2012-12-11 21:22:23 +00:00
|
|
|
# This file is loaded by some qmakespecs to get early configuration data.
|
|
|
|
|
2015-10-12 07:55:30 +00:00
|
|
|
host_build: \
|
|
|
|
PRI_FILE_NAME = qhost.pri
|
|
|
|
else: \
|
|
|
|
PRI_FILE_NAME = qdevice.pri
|
|
|
|
DEVICE_PRI = $$[QT_HOST_DATA/get]/mkspecs/$$PRI_FILE_NAME
|
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
|
|
|
|
2015-10-12 07:55:30 +00:00
|
|
|
# this variable can be persisted via qmake -set CROSS_COMPILE /foo
|
|
|
|
!host_build:isEmpty(CROSS_COMPILE): CROSS_COMPILE = $$[CROSS_COMPILE]
|
2012-04-09 19:47:12 +00:00
|
|
|
|
2012-03-29 14:28:05 +00:00
|
|
|
# Provide a function to be used by mkspecs
|
|
|
|
defineTest(deviceSanityCheckCompiler) {
|
2015-04-09 11:21:46 +00:00
|
|
|
equals(QMAKE_HOST.os, Windows): \
|
|
|
|
sfx = .exe
|
|
|
|
else: \
|
|
|
|
sfx =
|
|
|
|
|
2015-08-28 19:17:19 +00:00
|
|
|
# Build the compiler filename using the first value in QMAKE_CXX in order to
|
|
|
|
# support tools like ccache, which give QMAKE_CXX values of the form:
|
|
|
|
# ccache <path_to_compiler>
|
|
|
|
compiler = $$first(QMAKE_CXX)$$sfx
|
|
|
|
|
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.
|
2015-08-28 19:17:19 +00:00
|
|
|
exists($$compiler):return()
|
2012-03-29 14:28:05 +00:00
|
|
|
|
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.
|
2015-04-09 11:21:46 +00:00
|
|
|
ensurePathEnv()
|
|
|
|
for (dir, QMAKE_PATH_ENV) {
|
2015-08-28 19:17:19 +00:00
|
|
|
exists($$dir/$${compiler}): \
|
2015-04-09 11:21:46 +00:00
|
|
|
return()
|
|
|
|
}
|
2012-05-23 15:59:42 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
}
|
|
|
|
|