2014-02-10 02:10:30 +01:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
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():
|
|
|
|
|
2017-08-26 18:53:49 +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 [
|
2016-10-30 18:57:40 +01:00
|
|
|
('osxcross_sdk', 'OSXCross SDK version', 'darwin14'),
|
2018-06-07 20:46:32 +02:00
|
|
|
EnumVariable('debug_symbols', 'Add debugging symbols to release builds', 'yes', ('yes', 'no', 'full')),
|
|
|
|
BoolVariable('separate_debug_symbols', 'Create a separate file containing debugging symbols', 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():
|
|
|
|
|
2016-10-30 18:44:57 +01:00
|
|
|
return [
|
|
|
|
]
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
## Build type
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
if (env["target"] == "release"):
|
2018-07-21 22:26:14 +02:00
|
|
|
if (env["optimize"] == "speed"): #optimize for speed (default)
|
|
|
|
env.Prepend(CCFLAGS=['-O3', '-ffast-math', '-fomit-frame-pointer', '-ftree-vectorize', '-msse2'])
|
|
|
|
else: #optimize for size
|
|
|
|
env.Prepend(CCFLAGS=['-Os','-ftree-vectorize', '-msse2'])
|
|
|
|
|
2017-09-13 19:32:24 +02:00
|
|
|
if (env["debug_symbols"] == "yes"):
|
|
|
|
env.Prepend(CCFLAGS=['-g1'])
|
|
|
|
if (env["debug_symbols"] == "full"):
|
|
|
|
env.Prepend(CCFLAGS=['-g2'])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
elif (env["target"] == "release_debug"):
|
2018-07-21 22:26:14 +02:00
|
|
|
if (env["optimize"] == "speed"): #optimize for speed (default)
|
|
|
|
env.Prepend(CCFLAGS=['-O2', '-DDEBUG_ENABLED'])
|
|
|
|
else: #optimize for size
|
|
|
|
env.Prepend(CCFLAGS=['-Os', '-DDEBUG_ENABLED'])
|
2017-09-13 19:32:24 +02:00
|
|
|
if (env["debug_symbols"] == "yes"):
|
|
|
|
env.Prepend(CCFLAGS=['-g1'])
|
|
|
|
if (env["debug_symbols"] == "full"):
|
|
|
|
env.Prepend(CCFLAGS=['-g2'])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
elif (env["target"] == "debug"):
|
2017-06-30 19:21:38 +02:00
|
|
|
env.Prepend(CCFLAGS=['-g3', '-DDEBUG_ENABLED', '-DDEBUG_MEMORY_ENABLED'])
|
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
|
|
|
|
2017-10-07 09:01:36 +02:00
|
|
|
if "OSXCROSS_ROOT" not in os.environ: # regular native build
|
2018-02-19 12:49:31 +01:00
|
|
|
env.Append(CCFLAGS=['-arch', 'x86_64'])
|
|
|
|
env.Append(LINKFLAGS=['-arch', 'x86_64'])
|
2017-12-14 19:41:50 +01: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++"
|
|
|
|
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"
|
2017-12-14 15:15:06 +01:00
|
|
|
env.Append(CCFLAGS=['-D__MACPORTS__']) #hack to fix libvpx MM256_BROADCASTSI128_SI256 define
|
2017-06-30 19:21:38 +02:00
|
|
|
|
|
|
|
else: # osxcross build
|
2016-10-30 18:57:40 +01:00
|
|
|
root = os.environ.get("OSXCROSS_ROOT", 0)
|
2018-02-19 12:49:31 +01:00
|
|
|
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")
|
|
|
|
if ccache_path == None:
|
|
|
|
env['CC'] = basecmd + "cc"
|
|
|
|
env['CXX'] = basecmd + "c++"
|
|
|
|
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
|
|
|
|
env['CC'] = ccache_path + ' ' + basecmd + "cc"
|
|
|
|
env['CXX'] = ccache_path + ' ' + basecmd + "c++"
|
2016-10-30 18:57:40 +01:00
|
|
|
env['AR'] = basecmd + "ar"
|
|
|
|
env['RANLIB'] = basecmd + "ranlib"
|
|
|
|
env['AS'] = basecmd + "as"
|
2018-03-28 18:45:54 +02:00
|
|
|
env.Append(CCFLAGS=['-D__MACPORTS__']) #hack to fix libvpx MM256_BROADCASTSI128_SI256 define
|
2015-09-04 04:24:55 +02:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
if (env["CXX"] == "clang++"):
|
2016-10-30 18:44:57 +01:00
|
|
|
env.Append(CPPFLAGS=['-DTYPED_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
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
## Dependencies
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if env['builtin_libtheora']:
|
2017-06-30 19:21:38 +02:00
|
|
|
env["x86_libtheora_opt_gcc"] = True
|
|
|
|
|
|
|
|
## Flags
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
env.Append(CPPPATH=['#platform/osx'])
|
2018-07-14 14:11:28 +02:00
|
|
|
env.Append(CPPFLAGS=['-DOSX_ENABLED', '-DUNIX_ENABLED', '-DGLES_ENABLED', '-DAPPLE_STYLE_KEYS', '-DCOREAUDIO_ENABLED', '-DCOREMIDI_ENABLED'])
|
2018-07-25 18:06:17 +02:00
|
|
|
env.Append(LINKFLAGS=['-framework', 'Cocoa', '-framework', 'Carbon', '-framework', 'OpenGL', '-framework', 'AGL', '-framework', 'AudioUnit', '-framework', 'CoreAudio', '-framework', 'CoreMIDI', '-lz', '-framework', 'IOKit', '-framework', 'ForceFeedback'])
|
2017-06-30 19:21:38 +02:00
|
|
|
env.Append(LIBS=['pthread'])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
env.Append(CPPFLAGS=['-mmacosx-version-min=10.9'])
|
|
|
|
env.Append(LINKFLAGS=['-mmacosx-version-min=10.9'])
|