47ab2edd01
... except for MAKEFILE_GENERATOR = XCODE. This means the spec no longer hard-codes g++, and will work regardless of whether the default spec was clang or g++. This require us to set QMAKE_XCODE_GCC_VERSION properly for GCC, so that additional compilation flags passed by Xcode will match the actual compiler used. Task-number: QTBUG-31713 Change-Id: If65140a7471cd16f483036742f1d5b86d0485c52 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
11 lines
425 B
Plaintext
11 lines
425 B
Plaintext
# Unset makefile generator, so we can auto-detect value in default_post
|
|
!macx-xcode: unset(MAKEFILE_GENERATOR)
|
|
|
|
load(default_pre)
|
|
|
|
# Check for supported Xcode versions
|
|
lessThan(QMAKE_XCODE_VERSION, "4.3"): \
|
|
error("This mkspec requires Xcode 4.3 or later")
|
|
!lessThan(QMAKE_XCODE_VERSION, "4.7"): \
|
|
warning("The version of Xcode installed on this system is not recognized - custom compiler settings may be necessary")
|