2012-12-11 21:22:23 +00:00
|
|
|
# This file is loaded by some qmakespecs to get early configuration data.
|
|
|
|
|
2012-03-20 21:02:21 +00:00
|
|
|
# Load generated qdevice.pri
|
2012-06-26 17:59:44 +00:00
|
|
|
DEVICE_PRI = $$[QT_HOST_DATA/get]/mkspecs/qdevice.pri
|
2012-03-20 21:02:21 +00:00
|
|
|
exists($$DEVICE_PRI):include($$DEVICE_PRI)
|
2012-03-22 11:40:00 +00:00
|
|
|
unset(DEVICE_PRI)
|
2012-03-20 21:02:21 +00:00
|
|
|
|
2012-04-09 19:47:12 +00:00
|
|
|
isEmpty(CROSS_COMPILE) {
|
|
|
|
#this variable can be persisted via qmake -set CROSS_COMPILE /foo
|
|
|
|
CROSS_COMPILE = $$[CROSS_COMPILE]
|
|
|
|
}
|
|
|
|
|
2012-03-29 14:28:05 +00:00
|
|
|
# Provide a function to be used by mkspecs
|
|
|
|
defineTest(deviceSanityCheckCompiler) {
|
2012-05-23 15:59:42 +00:00
|
|
|
# Check if the binary exists with an absolute path. Do this check
|
|
|
|
# before the CROSS_COMPILE empty check below to allow the mkspec
|
|
|
|
# to derive the compiler path from other device options.
|
2012-03-29 14:28:05 +00:00
|
|
|
exists($$QMAKE_CXX):return()
|
|
|
|
|
2012-05-18 18:37:43 +00:00
|
|
|
# Check for possible reasons of failure
|
|
|
|
# check if CROSS_COMPILE device-option is set
|
|
|
|
isEmpty(CROSS_COMPILE):error("CROSS_COMPILE needs to be set via -device-option CROSS_COMPILE=<path>")
|
2012-03-29 14:28:05 +00:00
|
|
|
|
2012-05-23 15:59:42 +00:00
|
|
|
# Check if QMAKE_CXX points to an executable.
|
|
|
|
system("which $$QMAKE_CXX > /dev/null"):return()
|
|
|
|
|
|
|
|
# QMAKE_CXX does not point to a compiler.
|
2012-05-18 18:37:43 +00:00
|
|
|
error("Compiler $$QMAKE_CXX not found. Check the value of CROSS_COMPILE -device-option")
|
2012-03-29 14:28:05 +00:00
|
|
|
}
|
|
|
|
|