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
|
|
|
|
2016-02-11 12:30:53 +00:00
|
|
|
defineReplace(xcodeSDKInfo) {
|
|
|
|
info = $$1
|
2017-06-07 23:42:47 +00:00
|
|
|
equals(info, "Path"): \
|
2018-03-28 15:25:32 +00:00
|
|
|
infoarg = --show-sdk-path
|
2017-06-07 23:42:47 +00:00
|
|
|
equals(info, "PlatformPath"): \
|
2018-03-28 15:25:32 +00:00
|
|
|
infoarg = --show-sdk-platform-path
|
2017-06-07 23:42:47 +00:00
|
|
|
equals(info, "SDKVersion"): \
|
2018-03-28 15:25:32 +00:00
|
|
|
infoarg = --show-sdk-version
|
2016-02-11 12:30:53 +00:00
|
|
|
sdk = $$2
|
|
|
|
isEmpty(sdk): \
|
|
|
|
sdk = $$QMAKE_MAC_SDK
|
|
|
|
|
|
|
|
isEmpty(QMAKE_MAC_SDK.$${sdk}.$${info}) {
|
2018-03-28 15:25:32 +00:00
|
|
|
QMAKE_MAC_SDK.$${sdk}.$${info} = $$system("/usr/bin/xcrun --sdk $$sdk $$infoarg 2>/dev/null")
|
2017-06-07 23:42:47 +00:00
|
|
|
# --show-sdk-platform-path won't work for Command Line Tools; this is fine
|
|
|
|
# only used by the XCTest backend to testlib
|
2018-03-28 15:25:32 +00:00
|
|
|
isEmpty(QMAKE_MAC_SDK.$${sdk}.$${info}):if(!isEmpty(QMAKE_XCODEBUILD_PATH)|!equals(infoarg, "--show-sdk-platform-path")): \
|
|
|
|
error("Could not resolve SDK $$info for \'$$sdk\' using $$infoarg")
|
2016-02-11 12:30:53 +00:00
|
|
|
cache(QMAKE_MAC_SDK.$${sdk}.$${info}, set stash, QMAKE_MAC_SDK.$${sdk}.$${info})
|
|
|
|
}
|
2014-12-01 11:59:16 +00:00
|
|
|
|
2016-02-17 04:44:06 +00:00
|
|
|
return($$eval(QMAKE_MAC_SDK.$${sdk}.$${info}))
|
2015-02-13 14:17:47 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 12:30:53 +00:00
|
|
|
QMAKE_MAC_SDK_PATH = $$xcodeSDKInfo(Path)
|
|
|
|
QMAKE_MAC_SDK_PLATFORM_PATH = $$xcodeSDKInfo(PlatformPath)
|
|
|
|
QMAKE_MAC_SDK_VERSION = $$xcodeSDKInfo(SDKVersion)
|
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-06-13 12:18:10 +00:00
|
|
|
QMAKESPEC_NAME = $$basename(QMAKESPEC)
|
|
|
|
|
2013-02-27 14:01:25 +00:00
|
|
|
# Resolve SDK version of various tools
|
2015-11-22 17:24:04 +00:00
|
|
|
for(tool, $$list(QMAKE_CC QMAKE_CXX QMAKE_FIX_RPATH QMAKE_AR QMAKE_RANLIB QMAKE_LINK QMAKE_LINK_SHLIB QMAKE_ACTOOL QMAKE_LINK_C QMAKE_LINK_C_SHLIB)) {
|
2013-06-13 12:18:10 +00:00
|
|
|
tool_variable = QMAKE_MAC_SDK.$${QMAKESPEC_NAME}.$${QMAKE_MAC_SDK}.$${tool}
|
|
|
|
!isEmpty($$tool_variable) {
|
|
|
|
$$tool = $$eval($$tool_variable)
|
2013-05-08 10:21:05 +00:00
|
|
|
next()
|
|
|
|
}
|
|
|
|
|
2013-02-27 14:01:25 +00:00
|
|
|
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-10-31 19:27:54 +00:00
|
|
|
cache($$tool_variable, set stash, $$tool)
|
2013-02-27 14:01:25 +00:00
|
|
|
}
|