Clean up how we build against SDKs on Mac OS
Instead of setting -isysroot in both arch.test, compile.test, the various
mkspecs, and sdk.prf, we now propgate the chosen SDK as the qmake
variable QMAKE_MAC_SDK, which is then handled exclusivly in sdk.prf.
The QMAKE_MAC_SDK variable, and -sdk argument to configure, is expected
to be of the short-form name, eg macosx or iphoneos, not a full path, as
that's what Xcode also expects. We take care of translating that into
a full path for -isysroot/-syslibroot in sdk.prf, using xcodebuild as
a helper.
Change-Id: I281655b2fa5180c6e78ffdce36824e4a91447570
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
2013-02-15 17:11:04 +00:00
|
|
|
|
2013-03-01 12:28:03 +00:00
|
|
|
isEmpty(QMAKE_MAC_SDK): \
|
|
|
|
error("QMAKE_MAC_SDK must be set when using CONFIG += sdk.")
|
Clean up how we build against SDKs on Mac OS
Instead of setting -isysroot in both arch.test, compile.test, the various
mkspecs, and sdk.prf, we now propgate the chosen SDK as the qmake
variable QMAKE_MAC_SDK, which is then handled exclusivly in sdk.prf.
The QMAKE_MAC_SDK variable, and -sdk argument to configure, is expected
to be of the short-form name, eg macosx or iphoneos, not a full path, as
that's what Xcode also expects. We take care of translating that into
a full path for -isysroot/-syslibroot in sdk.prf, using xcodebuild as
a helper.
Change-Id: I281655b2fa5180c6e78ffdce36824e4a91447570
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
2013-02-15 17:11:04 +00:00
|
|
|
|
2013-03-01 12:28:03 +00:00
|
|
|
contains(QMAKE_MAC_SDK, .*/.*): \
|
|
|
|
error("QMAKE_MAC_SDK can only contain short-form SDK names (eg. macosx, iphoneos)")
|
Clean up how we build against SDKs on Mac OS
Instead of setting -isysroot in both arch.test, compile.test, the various
mkspecs, and sdk.prf, we now propgate the chosen SDK as the qmake
variable QMAKE_MAC_SDK, which is then handled exclusivly in sdk.prf.
The QMAKE_MAC_SDK variable, and -sdk argument to configure, is expected
to be of the short-form name, eg macosx or iphoneos, not a full path, as
that's what Xcode also expects. We take care of translating that into
a full path for -isysroot/-syslibroot in sdk.prf, using xcodebuild as
a helper.
Change-Id: I281655b2fa5180c6e78ffdce36824e4a91447570
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
2013-02-15 17:11:04 +00:00
|
|
|
|
2013-04-08 14:34:33 +00:00
|
|
|
QMAKE_MAC_SDK_PATH = $$system("/usr/bin/xcodebuild -sdk $$QMAKE_MAC_SDK -version Path 2>/dev/null")
|
2013-03-12 13:50:37 +00:00
|
|
|
isEmpty(QMAKE_MAC_SDK_PATH): error("Could not resolve SDK path for \'$$QMAKE_MAC_SDK\'")
|
Clean up how we build against SDKs on Mac OS
Instead of setting -isysroot in both arch.test, compile.test, the various
mkspecs, and sdk.prf, we now propgate the chosen SDK as the qmake
variable QMAKE_MAC_SDK, which is then handled exclusivly in sdk.prf.
The QMAKE_MAC_SDK variable, and -sdk argument to configure, is expected
to be of the short-form name, eg macosx or iphoneos, not a full path, as
that's what Xcode also expects. We take care of translating that into
a full path for -isysroot/-syslibroot in sdk.prf, using xcodebuild as
a helper.
Change-Id: I281655b2fa5180c6e78ffdce36824e4a91447570
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
2013-02-15 17:11:04 +00:00
|
|
|
|
2013-03-01 12:28:03 +00:00
|
|
|
!equals(MAKEFILE_GENERATOR, XCODE) {
|
|
|
|
QMAKE_CFLAGS += -isysroot $$QMAKE_MAC_SDK_PATH
|
|
|
|
QMAKE_CXXFLAGS += -isysroot $$QMAKE_MAC_SDK_PATH
|
|
|
|
QMAKE_OBJECTIVE_CFLAGS += -isysroot $$QMAKE_MAC_SDK_PATH
|
|
|
|
QMAKE_LFLAGS += -Wl,-syslibroot,$$QMAKE_MAC_SDK_PATH
|
|
|
|
}
|
2013-02-15 16:27:51 +00:00
|
|
|
|
2013-03-01 12:28:03 +00:00
|
|
|
sysrootified =
|
|
|
|
for(val, QMAKE_INCDIR_OPENGL): sysrootified += $${QMAKE_MAC_SDK_PATH}$$val
|
|
|
|
QMAKE_INCDIR_OPENGL = $$sysrootified
|
2013-02-15 16:27:51 +00:00
|
|
|
|
2013-02-27 14:01:25 +00:00
|
|
|
# Resolve SDK version of various tools
|
|
|
|
for(tool, $$list(QMAKE_CC QMAKE_CXX QMAKE_FIX_RPATH QMAKE_AR QMAKE_RANLIB QMAKE_LINK QMAKE_LINK_SHLIB)) {
|
|
|
|
value = $$eval($$tool)
|
|
|
|
isEmpty(value): next()
|
|
|
|
|
2013-04-08 14:34:33 +00:00
|
|
|
sysrooted = $$system("/usr/bin/xcrun -sdk $$QMAKE_MAC_SDK -find $$first(value) 2>/dev/null")
|
2013-04-08 10:17:27 +00:00
|
|
|
isEmpty(sysrooted): next()
|
|
|
|
|
2013-02-27 14:01:25 +00:00
|
|
|
$$tool = $$sysrooted $$member(value, 1, -1)
|
|
|
|
}
|
|
|
|
|
2013-03-01 12:28:03 +00:00
|
|
|
# We use xml as the output format instead of json since plutil on 10.6 does not have that option
|
|
|
|
QMAKE_MAC_PLATFORM_NAME = $$system("plutil -convert xml1 \"$$QMAKE_MAC_SDK_PATH/SDKSettings.plist\" -o - | " \
|
|
|
|
"sed '/^<!DOCTYPE/d' | " \ # Don't look up http://www.apple.com/DTDs/PropertyList-1.0.dtd
|
|
|
|
"PERL5LIB= xpath 'string(//key[.=\"PLATFORM_NAME\"]/following-sibling::*[1])' 2>&1 | " \
|
|
|
|
"sed 's/.*Value: \\(.*\\)/\\1/'")
|
2013-02-15 16:27:51 +00:00
|
|
|
|
2013-03-01 12:28:03 +00:00
|
|
|
isEmpty(QMAKE_MAC_PLATFORM_NAME): error("Could not resolve platform name for SDK '$$QMAKE_MAC_SDK'")
|
2013-02-15 16:27:51 +00:00
|
|
|
|
|
|
|
!equals(MAKEFILE_GENERATOR, XCODE) {
|
2012-11-20 14:25:34 +00:00
|
|
|
# FIXME: Get the version_min_flag out of the platform's 'Native Build System.xcspec'
|
|
|
|
version_identifier = $$replace(QMAKE_MAC_PLATFORM_NAME, iphonesimulator, ios-simulator)
|
|
|
|
|
2013-04-03 13:05:06 +00:00
|
|
|
# C++11 support may affect the deployment target
|
|
|
|
c++11: load(c++11)
|
|
|
|
|
2012-11-20 14:25:34 +00:00
|
|
|
ios:!host_build: \
|
|
|
|
deployment_target = $$QMAKE_IOS_DEPLOYMENT_TARGET
|
|
|
|
else: \
|
|
|
|
deployment_target = $$QMAKE_MACOSX_DEPLOYMENT_TARGET
|
|
|
|
|
|
|
|
version_min_flag = -m$${version_identifier}-version-min=$$deployment_target
|
2013-02-15 16:27:51 +00:00
|
|
|
QMAKE_CFLAGS += $$version_min_flag
|
|
|
|
QMAKE_CXXFLAGS += $$version_min_flag
|
|
|
|
QMAKE_OBJECTIVE_CFLAGS += $$version_min_flag
|
|
|
|
QMAKE_LFLAGS += $$version_min_flag
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|