2a9b3b4943
In a typical build environment the toolchain will use the value of the MACOSX_DEPLOYMENT_TARGET environment variable to determine the version of macOS to support. When cross compiling there are two distinct toolchains, but they will look at this single environment variable. To avoid contamination, we always set the equivalent command line flag which effectively disables the toolchain's internal handling. Prior to this change, the MACOSX_DEPLOYMENT_TARGET variable was ignored, and the toolchains always used the Nix platform definition (`darwinMinVersion`) unless overridden with command line arguments. This change restores support for MACOSX_DEPLOYMENT_TARGET, and adds nix-specific MACOSX_DEPLOYMENT_TARGET_FOR_BUILD and MACOSX_DEPLOYMENT_TARGET_FOR_TARGET for cross compilation.
72 lines
2.6 KiB
Bash
72 lines
2.6 KiB
Bash
# Unconditionally adding in platform version flags will result in warnings that
|
|
# will be treated as errors by some packages. Add any missing flags here.
|
|
|
|
# There are two things to be configured: the "platform version" (oldest
|
|
# supported version of macos, ios, etc), and the "sdk version".
|
|
#
|
|
# The modern way of configuring these is to use:
|
|
# -platform_version $platform $platform_version $sdk_version"
|
|
#
|
|
# The old way is still supported, and uses flags like:
|
|
# -${platform}_version_min $platform_version
|
|
# -sdk_version $sdk_version
|
|
#
|
|
# If both styles are specified ld will combine them. If multiple versions are
|
|
# specified for the same platform, ld will emit an error.
|
|
#
|
|
# The following adds flags for whichever properties have not already been
|
|
# provided.
|
|
|
|
havePlatformVersionFlag=
|
|
haveDarwinSDKVersion=
|
|
haveDarwinPlatformVersion=
|
|
|
|
mangleVarSingle MACOSX_DEPLOYMENT_TARGET ${role_suffixes[@]+"${role_suffixes[@]}"}
|
|
|
|
n=0
|
|
nParams=${#params[@]}
|
|
while (( n < nParams )); do
|
|
p=${params[n]}
|
|
case "$p" in
|
|
# the current platform
|
|
-@darwinPlatform@_version_min)
|
|
haveDarwinPlatformVersion=1
|
|
;;
|
|
|
|
# legacy aliases
|
|
-macosx_version_min|-iphoneos_version_min|-iosmac_version_min|-uikitformac_version_min)
|
|
haveDarwinPlatformVersion=1
|
|
;;
|
|
|
|
-sdk_version)
|
|
haveDarwinSDKVersion=1
|
|
;;
|
|
|
|
-platform_version)
|
|
havePlatformVersionFlag=1
|
|
|
|
# If clang can't determine the sdk version it will pass 0.0.0. This
|
|
# has runtime effects so we override this to use the known sdk
|
|
# version.
|
|
if [ "${params[n+3]-}" = 0.0.0 ]; then
|
|
params[n+3]=@darwinSdkVersion@
|
|
fi
|
|
;;
|
|
esac
|
|
n=$((n + 1))
|
|
done
|
|
|
|
# If the caller has set -platform_version, trust they're doing the right thing.
|
|
# This will be the typical case for clang in nixpkgs.
|
|
if [ ! "$havePlatformVersionFlag" ]; then
|
|
if [ ! "$haveDarwinSDKVersion" ] && [ ! "$haveDarwinPlatformVersion" ]; then
|
|
# Nothing provided. Use the modern "-platform_version" to set both.
|
|
extraBefore+=(-platform_version @darwinPlatform@ "${MACOSX_DEPLOYMENT_TARGET_@suffixSalt@:-@darwinMinVersion@}" @darwinSdkVersion@)
|
|
elif [ ! "$haveDarwinSDKVersion" ]; then
|
|
# Add missing sdk version
|
|
extraBefore+=(-sdk_version @darwinSdkVersion@)
|
|
elif [ ! "$haveDarwinPlatformVersion" ]; then
|
|
# Add missing platform version
|
|
extraBefore+=(-@darwinPlatform@_version_min "${MACOSX_DEPLOYMENT_TARGET_@suffixSalt@:-@darwinMinVersion@}")
|
|
fi
|
|
fi
|