diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-07-05 16:07:55 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-07-07 11:08:33 +0200 |
commit | 5b8bcb7164a5e6072ba2be46ca1c06d74503deb8 (patch) | |
tree | 2a4dd7e7ae03c32c81c67e3b7ed3a057cd1bb49d /SConstruct | |
parent | dbf3a13d0faad856726b96942425e08618aa89d3 (diff) | |
download | redot-cpp-5b8bcb7164a5e6072ba2be46ca1c06d74503deb8.tar.gz |
Add OSX arm64 build target.
New "macos_arch" to specify the desired arch, and "macos_sdk_path" to
override the default SDK path.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -143,6 +143,17 @@ opts.Add( 'macOS deployment target', 'default' ) +opts.Add( + 'macos_sdk_path', + 'macOS SDK path', + '' +) +opts.Add(EnumVariable( + 'macos_arch', + 'Target macOS architecture', + 'x86_64', + ['x86_64', 'arm64'] +)) opts.Add(EnumVariable( 'ios_arch', 'Target iOS architecture', @@ -217,14 +228,19 @@ elif env['platform'] == 'osx': 'Only 64-bit builds are supported for the macOS target.' ) - env.Append(CCFLAGS=['-std=c++14', '-arch', 'x86_64']) + env.Append(CCFLAGS=['-std=c++14', '-arch', env['macos_arch']]) if env['macos_deployment_target'] != 'default': env.Append(CCFLAGS=['-mmacosx-version-min=' + env['macos_deployment_target']]) + env.Append(LINKFLAGS=['-mmacosx-version-min=' + env['macos_deployment_target']]) + + if env['macos_sdk_path']: + env.Append(CCFLAGS=['-isysroot', env['macos_sdk_path']]) + env.Append(LINKFLAGS=['-isysroot', env['macos_sdk_path']]) env.Append(LINKFLAGS=[ '-arch', - 'x86_64', + env['macos_arch'], '-framework', 'Cocoa', '-Wl,-undefined,dynamic_lookup', |