Commit 62e9bed1 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #8588 from kylefleming:mac-deployment-target

parents c757d286 3d526614
...@@ -18,6 +18,7 @@ class OSXBuilder(Builder): ...@@ -18,6 +18,7 @@ class OSXBuilder(Builder):
def getBuildCommand(self, archs, target): def getBuildCommand(self, archs, target):
buildcmd = [ buildcmd = [
"xcodebuild", "xcodebuild",
"MACOSX_DEPLOYMENT_TARGET=10.9",
"ARCHS=%s" % archs[0], "ARCHS=%s" % archs[0],
"-sdk", target.lower(), "-sdk", target.lower(),
"-configuration", "Release", "-configuration", "Release",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment