diff options
author | lzubiaur <zubiaur.laurent@gmail.com> | 2019-02-12 08:32:26 +0900 |
---|---|---|
committer | lzubiaur <zubiaur.laurent@gmail.com> | 2019-02-12 08:32:26 +0900 |
commit | e0295d7cd4110dfcf16f80402043512bf20fd43c (patch) | |
tree | 7ab317c11eebb1e15b9870686ec43fd1249067ef | |
parent | 2a4e82b77ea69a3c6dc1ad8117f0019a5adf5cef (diff) | |
download | redot-cpp-e0295d7cd4110dfcf16f80402043512bf20fd43c.tar.gz |
Set default arch to 64bits for osx platform
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ if env['platform'] == 'windows': opts.Update(env) is64 = False -if (env['TARGET_ARCH'] == 'amd64' or env['TARGET_ARCH'] == 'emt64' or env['TARGET_ARCH'] == 'x86_64'): +if (env['platform'] == 'osx' or env['TARGET_ARCH'] == 'amd64' or env['TARGET_ARCH'] == 'emt64' or env['TARGET_ARCH'] == 'x86_64'): is64 = True if env['bits'] == 'default': env['bits'] = '64' if is64 else '32' |