Set Mac OS X deployment target to 10.9

Without it set, the build will choose the current OS version as the deployment target. 10.9 is the earliest usable, since that is when OS X introduced libc++.
This commit is contained in:
Kyle Fleming 2017-04-16 14:39:26 -07:00
parent 10787c68d0
commit 3d52661400

View File

@ -18,6 +18,7 @@ class OSXBuilder(Builder):
def getBuildCommand(self, archs, target):
buildcmd = [
"xcodebuild",
"MACOSX_DEPLOYMENT_TARGET=10.9",
"ARCHS=%s" % archs[0],
"-sdk", target.lower(),
"-configuration", "Release",