Skip to content

Commit

Permalink
Merge pull request #24545 from akien-mga/osxcross-mono
Browse files Browse the repository at this point in the history
SCons: Allow building Mono module with OSXCross
  • Loading branch information
akien-mga committed Dec 30, 2018
2 parents 534044e + d52100f commit dcc7f2b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
10 changes: 6 additions & 4 deletions modules/mono/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ def configure(env):

copy_file(mono_bin_path, 'bin', mono_dll_name + '.dll')
else:
sharedlib_ext = '.dylib' if sys.platform == 'darwin' else '.so'
is_apple = (sys.platform == 'darwin' or "osxcross" in env)

sharedlib_ext = '.dylib' if is_apple else '.so'

mono_root = ''
mono_lib_path = ''
Expand All @@ -154,7 +156,7 @@ def configure(env):
if os.getenv('MONO64_PREFIX'):
mono_root = os.getenv('MONO64_PREFIX')

if not mono_root and sys.platform == 'darwin':
if not mono_root and is_apple:
# Try with some known directories under OSX
hint_dirs = ['/Library/Frameworks/Mono.framework/Versions/Current', '/usr/local/var/homebrew/linked/mono']
for hint_dir in hint_dirs:
Expand Down Expand Up @@ -190,14 +192,14 @@ def configure(env):
if mono_static:
mono_lib_file = os.path.join(mono_lib_path, 'lib' + mono_lib + '.a')

if sys.platform == 'darwin':
if is_apple:
env.Append(LINKFLAGS=['-Wl,-force_load,' + mono_lib_file])
else:
env.Append(LINKFLAGS=['-Wl,-whole-archive', mono_lib_file, '-Wl,-no-whole-archive'])
else:
env.Append(LIBS=[mono_lib])

if sys.platform == 'darwin':
if is_apple:
env.Append(LIBS=['iconv', 'pthread'])
else:
env.Append(LIBS=['m', 'rt', 'dl', 'pthread'])
Expand Down
2 changes: 1 addition & 1 deletion modules/webm/libvpx/SCsub
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ if webm_multithread:
env_libvpx.add_source_files(env.modules_sources, libvpx_sources_mt)

if webm_cpu_x86:
is_clang_or_gcc = ('gcc' in os.path.basename(env["CC"])) or ('clang' in os.path.basename(env["CC"])) or ("OSXCROSS_ROOT" in os.environ)
is_clang_or_gcc = ('gcc' in os.path.basename(env["CC"])) or ('clang' in os.path.basename(env["CC"])) or ("osxcross" in env)

env_libvpx_mmx = env_libvpx.Clone()
if cpu_bits == '32' and is_clang_or_gcc:
Expand Down
2 changes: 1 addition & 1 deletion platform/iphone/SCsub
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ios_lib = env_ios.add_library('iphone', iphone_lib)

def combine_libs(target=None, source=None, env=None):
lib_path = target[0].srcnode().abspath
if ("OSXCROSS_IOS" in os.environ):
if "osxcross" in env:
libtool = '$IPHONEPATH/usr/bin/${ios_triple}libtool'
else:
libtool = "$IPHONEPATH/usr/bin/libtool"
Expand Down
4 changes: 4 additions & 0 deletions platform/iphone/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ def configure(env):

## Compiler configuration

# Save this in environment for use by other modules
if "OSXCROSS_IOS" in os.environ:
env["osxcross"] = True

env['ENV']['PATH'] = env['IPHONEPATH'] + "/Developer/usr/bin/:" + env['ENV']['PATH']

compiler_path = '$IPHONEPATH/usr/bin/${ios_triple}'
Expand Down
6 changes: 5 additions & 1 deletion platform/osx/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ def configure(env):

## Compiler configuration

if "OSXCROSS_ROOT" not in os.environ: # regular native build
# Save this in environment for use by other modules
if "OSXCROSS_ROOT" in os.environ:
env["osxcross"] = True

if not "osxcross" in env: # regular native build
env.Append(CCFLAGS=['-arch', 'x86_64'])
env.Append(LINKFLAGS=['-arch', 'x86_64'])
if (env["macports_clang"] != 'no'):
Expand Down

0 comments on commit dcc7f2b

Please sign in to comment.