63891267c1
Integrity assembler doesn't understand NEON assembly statements. Compiler enables _ARM_NEON_ and _ARM_NEON to indicate that NEON intrinsics are available. _ARM_NEON_ and _ARM_NEON needs to be disabled to skip handwritten assembly code paths in Qt.Auto- vectorization is enabled without the flags enabled. Task-number: QTBUG-72716 Change-Id: I84cfbf98bd2af47740a79f4b300c1801017ee22c Reviewed-by: Tuukka Turunen <tuukka.turunen@qt.io> Reviewed-by: Kimmo Ollila <kimmo.ollila@qt.io> Reviewed-by: Timo Aarnipuro <timo.aarnipuro@qt.io> Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
28 lines
841 B
Plaintext
28 lines
841 B
Plaintext
#
|
|
# Base qmake configuration for INTEGRITY armv8 targets
|
|
#
|
|
MAKEFILE_GENERATOR = UNIX
|
|
|
|
QMAKE_PLATFORM = integrity
|
|
|
|
include(unix.conf)
|
|
|
|
include(ghs-base.conf)
|
|
|
|
bsp_name = $$(INTEGRITY_BSP)
|
|
isEmpty(bsp_name): \
|
|
error("This qmakespec requires $INTEGRITY_BSP to be set")
|
|
|
|
os_directory = $$(INTEGRITY_DIR)
|
|
isEmpty(os_directory): \
|
|
error("This qmakespec requires $INTEGRITY_DIR to be set")
|
|
|
|
QMAKE_CC = cxintarm64 -U__ARM_NEON__ -U__ARM_NEON -bsp $$bsp_name -os_dir $$os_directory -non_shared
|
|
QMAKE_CXX = cxintarm64 -U__ARM_NEON__ -U__ARM_NEON -bsp $$bsp_name -os_dir $$os_directory -non_shared
|
|
QMAKE_LINK = $$QMAKE_CXX
|
|
QMAKE_AR = $$QMAKE_CXX -archive -o
|
|
|
|
QMAKE_CFLAGS += -bigswitch
|
|
QMAKE_CXXFLAGS += -bigswitch
|
|
QMAKE_LFLAGS += -bigswitch
|