4cc9523a31
Any message/error in mkspecs or qmake feature files ends up confusing the current arch detection logic. Instead, search for "Project MESSAGE: .* Architecture: <arch>". Change-Id: I308932a5b75f3a1fcbc4fe30c74faf2e83b2d752 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
8 lines
376 B
INI
8 lines
376 B
INI
CONFIG -= qt debug_and_release
|
|
# Detect target by preprocessing a file that uses Q_PROCESSOR_* macros from qprocessordetection.h
|
|
COMMAND = $$QMAKE_CXX $$QMAKE_CXXFLAGS -E $$PWD/arch.cpp
|
|
# system function converts newline in output into spaces
|
|
COMPILER_ARCH = $$system($$COMMAND)
|
|
# Message back to configure so that it can set QT_ARCH and QT_HOST_ARCH
|
|
message($$COMPILER_ARCH)
|