2014-02-10 02:10:30 +01:00
|
|
|
import os
|
|
|
|
import sys
|
2018-08-24 02:03:57 +02:00
|
|
|
from methods import detect_darwin_sdk_path
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
def is_active():
|
2016-10-30 18:44:57 +01:00
|
|
|
return True
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2016-10-30 19:05:14 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
def get_name():
|
2016-10-30 18:44:57 +01:00
|
|
|
return "OSX"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 19:05:14 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
def can_build():
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if sys.platform == "darwin" or ("OSXCROSS_ROOT" in os.environ):
|
2016-10-30 18:44:57 +01:00
|
|
|
return True
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:44:57 +01:00
|
|
|
return False
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 19:05:14 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
def get_opts():
|
2018-01-26 21:39:08 +01:00
|
|
|
from SCons.Variables import BoolVariable, EnumVariable
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:44:57 +01:00
|
|
|
return [
|
2020-03-30 08:28:32 +02:00
|
|
|
("osxcross_sdk", "OSXCross SDK version", "darwin14"),
|
|
|
|
("MACOS_SDK_PATH", "Path to the macOS SDK", ""),
|
2020-08-20 21:55:46 +02:00
|
|
|
EnumVariable("debug_symbols", "Add debugging symbols to release/release_debug builds", "yes", ("yes", "no")),
|
2020-03-30 08:28:32 +02:00
|
|
|
BoolVariable("separate_debug_symbols", "Create a separate file containing debugging symbols", False),
|
|
|
|
BoolVariable("use_ubsan", "Use LLVM/GCC compiler undefined behavior sanitizer (UBSAN)", False),
|
|
|
|
BoolVariable("use_asan", "Use LLVM/GCC compiler address sanitizer (ASAN))", False),
|
|
|
|
BoolVariable("use_tsan", "Use LLVM/GCC compiler thread sanitizer (TSAN))", False),
|
2016-10-30 18:44:57 +01:00
|
|
|
]
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 19:05:14 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
def get_flags():
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
return []
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
## Build type
|
|
|
|
|
|
|
|
if env["target"] == "release":
|
2020-08-14 12:15:58 +02:00
|
|
|
if env["debug_symbols"] != "full":
|
|
|
|
if env["optimize"] == "speed": # optimize for speed (default)
|
2020-07-24 16:54:34 +02:00
|
|
|
env.Prepend(CCFLAGS=["-O3", "-fomit-frame-pointer", "-ftree-vectorize"])
|
2020-08-14 12:15:58 +02:00
|
|
|
else: # optimize for size
|
2020-07-24 16:54:34 +02:00
|
|
|
env.Prepend(CCFLAGS=["-Os", "-ftree-vectorize"])
|
|
|
|
if env["arch"] != "arm64":
|
|
|
|
env.Prepend(CCFLAGS=["-msse2"])
|
2020-03-30 08:28:32 +02:00
|
|
|
|
|
|
|
if env["debug_symbols"] == "yes":
|
|
|
|
env.Prepend(CCFLAGS=["-g2"])
|
|
|
|
|
|
|
|
elif env["target"] == "release_debug":
|
2020-08-14 12:15:58 +02:00
|
|
|
if env["debug_symbols"] != "full":
|
|
|
|
if env["optimize"] == "speed": # optimize for speed (default)
|
|
|
|
env.Prepend(CCFLAGS=["-O2"])
|
|
|
|
else: # optimize for size
|
|
|
|
env.Prepend(CCFLAGS=["-Os"])
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
env.Prepend(CPPDEFINES=["DEBUG_ENABLED"])
|
2020-08-14 12:15:58 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["debug_symbols"] == "yes":
|
|
|
|
env.Prepend(CCFLAGS=["-g2"])
|
|
|
|
|
|
|
|
elif env["target"] == "debug":
|
|
|
|
env.Prepend(CCFLAGS=["-g3"])
|
2020-07-23 09:39:07 +02:00
|
|
|
env.Prepend(CPPDEFINES=["DEBUG_ENABLED"])
|
2020-08-15 02:55:36 +02:00
|
|
|
env.Prepend(LINKFLAGS=["-Xlinker", "-no_deduplicate"])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-02-19 23:36:34 +01:00
|
|
|
## Architecture
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-02-19 12:49:31 +01:00
|
|
|
# Mac OS X no longer runs on 32-bit since 10.7 which is unsupported since 2014
|
|
|
|
# As such, we only support 64-bit
|
2018-03-01 08:21:58 +01:00
|
|
|
env["bits"] = "64"
|
2018-02-19 23:36:34 +01:00
|
|
|
|
|
|
|
## Compiler configuration
|
2017-06-30 19:21:38 +02:00
|
|
|
|
2018-12-22 12:31:43 +01:00
|
|
|
# Save this in environment for use by other modules
|
|
|
|
if "OSXCROSS_ROOT" in os.environ:
|
|
|
|
env["osxcross"] = True
|
|
|
|
|
2020-07-20 20:30:40 +02:00
|
|
|
if env["arch"] == "arm64":
|
|
|
|
print("Building for macOS 10.15+, platform arm64.")
|
|
|
|
env.Append(CCFLAGS=["-arch", "arm64", "-mmacosx-version-min=10.15", "-target", "arm64-apple-macos10.15"])
|
|
|
|
env.Append(LINKFLAGS=["-arch", "arm64", "-mmacosx-version-min=10.15", "-target", "arm64-apple-macos10.15"])
|
|
|
|
else:
|
|
|
|
print("Building for macOS 10.9+, platform x86-64.")
|
|
|
|
env.Append(CCFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.9"])
|
|
|
|
env.Append(LINKFLAGS=["-arch", "x86_64", "-mmacosx-version-min=10.9"])
|
2020-06-29 13:24:56 +02:00
|
|
|
|
2020-07-20 20:30:40 +02:00
|
|
|
if not "osxcross" in env: # regular native build
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["macports_clang"] != "no":
|
2017-12-14 15:15:06 +01:00
|
|
|
mpprefix = os.environ.get("MACPORTS_PREFIX", "/opt/local")
|
2017-12-14 19:41:50 +01:00
|
|
|
mpclangver = env["macports_clang"]
|
|
|
|
env["CC"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang"
|
2018-01-05 20:37:18 +01:00
|
|
|
env["LINK"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang++"
|
2017-12-14 19:41:50 +01:00
|
|
|
env["CXX"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang++"
|
2020-03-30 08:28:32 +02:00
|
|
|
env["AR"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ar"
|
|
|
|
env["RANLIB"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ranlib"
|
|
|
|
env["AS"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-as"
|
|
|
|
env.Append(CPPDEFINES=["__MACPORTS__"]) # hack to fix libvpx MM256_BROADCASTSI128_SI256 define
|
2019-10-24 16:34:18 +02:00
|
|
|
else:
|
2020-03-30 08:28:32 +02:00
|
|
|
env["CC"] = "clang"
|
|
|
|
env["CXX"] = "clang++"
|
2017-06-30 19:21:38 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
detect_darwin_sdk_path("osx", env)
|
|
|
|
env.Append(CCFLAGS=["-isysroot", "$MACOS_SDK_PATH"])
|
|
|
|
env.Append(LINKFLAGS=["-isysroot", "$MACOS_SDK_PATH"])
|
2018-08-24 02:03:57 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
else: # osxcross build
|
2016-10-30 18:57:40 +01:00
|
|
|
root = os.environ.get("OSXCROSS_ROOT", 0)
|
2020-07-20 20:30:40 +02:00
|
|
|
if env["arch"] == "arm64":
|
|
|
|
basecmd = root + "/target/bin/arm64-apple-" + env["osxcross_sdk"] + "-"
|
|
|
|
else:
|
|
|
|
basecmd = root + "/target/bin/x86_64-apple-" + env["osxcross_sdk"] + "-"
|
2015-09-04 04:24:55 +02:00
|
|
|
|
2017-11-10 01:07:28 +01:00
|
|
|
ccache_path = os.environ.get("CCACHE")
|
2018-10-27 01:18:15 +02:00
|
|
|
if ccache_path is None:
|
2020-03-30 08:28:32 +02:00
|
|
|
env["CC"] = basecmd + "cc"
|
|
|
|
env["CXX"] = basecmd + "c++"
|
2017-11-10 01:07:28 +01:00
|
|
|
else:
|
|
|
|
# there aren't any ccache wrappers available for OS X cross-compile,
|
|
|
|
# to enable caching we need to prepend the path to the ccache binary
|
2020-03-30 08:28:32 +02:00
|
|
|
env["CC"] = ccache_path + " " + basecmd + "cc"
|
|
|
|
env["CXX"] = ccache_path + " " + basecmd + "c++"
|
|
|
|
env["AR"] = basecmd + "ar"
|
|
|
|
env["RANLIB"] = basecmd + "ranlib"
|
|
|
|
env["AS"] = basecmd + "as"
|
|
|
|
env.Append(CPPDEFINES=["__MACPORTS__"]) # hack to fix libvpx MM256_BROADCASTSI128_SI256 define
|
|
|
|
|
|
|
|
if env["CXX"] == "clang++":
|
|
|
|
env.Append(CPPDEFINES=["TYPED_METHOD_BIND"])
|
2016-10-30 18:57:40 +01:00
|
|
|
env["CC"] = "clang"
|
2018-01-05 20:37:18 +01:00
|
|
|
env["LINK"] = "clang++"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["use_ubsan"] or env["use_asan"] or env["use_tsan"]:
|
2020-01-29 06:12:38 +01:00
|
|
|
env.extra_suffix += "s"
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["use_ubsan"]:
|
|
|
|
env.Append(CCFLAGS=["-fsanitize=undefined"])
|
|
|
|
env.Append(LINKFLAGS=["-fsanitize=undefined"])
|
2020-01-29 06:12:38 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["use_asan"]:
|
|
|
|
env.Append(CCFLAGS=["-fsanitize=address"])
|
|
|
|
env.Append(LINKFLAGS=["-fsanitize=address"])
|
2020-01-29 06:12:38 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["use_tsan"]:
|
|
|
|
env.Append(CCFLAGS=["-fsanitize=thread"])
|
|
|
|
env.Append(LINKFLAGS=["-fsanitize=thread"])
|
2020-01-29 06:12:38 +01:00
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
## Dependencies
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
if env["builtin_libtheora"]:
|
2020-06-29 13:24:56 +02:00
|
|
|
if env["arch"] != "arm64":
|
|
|
|
env["x86_libtheora_opt_gcc"] = True
|
2017-06-30 19:21:38 +02:00
|
|
|
|
|
|
|
## Flags
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
env.Prepend(CPPPATH=["#platform/osx"])
|
|
|
|
env.Append(
|
|
|
|
CPPDEFINES=[
|
|
|
|
"OSX_ENABLED",
|
|
|
|
"UNIX_ENABLED",
|
|
|
|
"GLES_ENABLED",
|
|
|
|
"APPLE_STYLE_KEYS",
|
|
|
|
"COREAUDIO_ENABLED",
|
|
|
|
"COREMIDI_ENABLED",
|
2020-06-29 13:24:56 +02:00
|
|
|
"GL_SILENCE_DEPRECATION",
|
2020-03-30 08:28:32 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
env.Append(
|
|
|
|
LINKFLAGS=[
|
|
|
|
"-framework",
|
|
|
|
"Cocoa",
|
|
|
|
"-framework",
|
|
|
|
"Carbon",
|
|
|
|
"-framework",
|
|
|
|
"OpenGL",
|
|
|
|
"-framework",
|
|
|
|
"AGL",
|
|
|
|
"-framework",
|
|
|
|
"AudioUnit",
|
|
|
|
"-framework",
|
|
|
|
"CoreAudio",
|
|
|
|
"-framework",
|
|
|
|
"CoreMIDI",
|
|
|
|
"-lz",
|
|
|
|
"-framework",
|
|
|
|
"IOKit",
|
|
|
|
"-framework",
|
|
|
|
"ForceFeedback",
|
|
|
|
"-framework",
|
|
|
|
"AVFoundation",
|
|
|
|
"-framework",
|
|
|
|
"CoreMedia",
|
|
|
|
"-framework",
|
|
|
|
"CoreVideo",
|
|
|
|
]
|
|
|
|
)
|
|
|
|
env.Append(LIBS=["pthread"])
|