summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/osx.py7
-rw-r--r--tools/osxcross.py28
2 files changed, 34 insertions, 1 deletions
diff --git a/tools/osx.py b/tools/osx.py
index 1130f83..b709472 100644
--- a/tools/osx.py
+++ b/tools/osx.py
@@ -1,14 +1,16 @@
import os
import sys
+import osxcross
def options(opts):
opts.Add("macos_deployment_target", "macOS deployment target", "default")
opts.Add("macos_sdk_path", "macOS SDK path", "")
+ osxcross.options(opts)
def exists(env):
- return sys.platform == "darwin"
+ return sys.platform == "darwin" or osxcross.exists(env)
def generate(env):
@@ -20,6 +22,9 @@ def generate(env):
# Use clang on macOS by default
env["CXX"] = "clang++"
env["CC"] = "clang"
+ else:
+ # Use osxcross
+ osxcross.generate(env)
if env["arch"] == "universal":
env.Append(LINKFLAGS=["-arch", "x86_64", "-arch", "arm64"])
diff --git a/tools/osxcross.py b/tools/osxcross.py
new file mode 100644
index 0000000..f11166d
--- /dev/null
+++ b/tools/osxcross.py
@@ -0,0 +1,28 @@
+import os
+
+
+def options(opts):
+ opts.Add("osxcross_sdk", "OSXCross SDK version", "darwin16")
+
+
+def exists(env):
+ return "OSXCROSS_ROOT" in os.environ
+
+
+def generate(env):
+ root = os.environ.get("OSXCROSS_ROOT", "")
+ if env["arch"] == "arm64":
+ basecmd = root + "/target/bin/arm64-apple-" + env["osxcross_sdk"] + "-"
+ else:
+ basecmd = root + "/target/bin/x86_64-apple-" + env["osxcross_sdk"] + "-"
+
+ env["CC"] = basecmd + "clang"
+ env["CXX"] = basecmd + "clang++"
+ env["AR"] = basecmd + "ar"
+ env["RANLIB"] = basecmd + "ranlib"
+ env["AS"] = basecmd + "as"
+
+ binpath = os.path.join(root, "target", "bin")
+ if binpath not in env["ENV"]["PATH"]:
+ # Add OSXCROSS bin folder to PATH (required for linking).
+ env["ENV"]["PATH"] = "%s:%s" % (binpath, env["ENV"]["PATH"])