diff options
author | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-03-01 20:30:55 -0300 |
---|---|---|
committer | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-03-01 20:30:55 -0300 |
commit | 5162132236b1cbdd8a4f284ca102bea1e4320fd8 (patch) | |
tree | 268a1272abdcf0e605d742889ae1526bec29e8b5 /SConstruct | |
parent | 3820c0537b852edd5c142401384fc9a3cfe86356 (diff) | |
download | redot-cpp-5162132236b1cbdd8a4f284ca102bea1e4320fd8.tar.gz |
Fix compile problem on OS X
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -66,7 +66,7 @@ elif target_platform == 'windows': env.Append(CCFLAGS = [ '-g', '-O3', '-std=c++14', '-Wwrite-strings' ]) env.Append(LINKFLAGS = [ '--static', '-Wl,--no-undefined', '-static-libgcc', '-static-libstdc++' ]) -elif platform == 'osx': +elif target_platform == 'osx': if ARGUMENTS.get('use_llvm', 'no') == 'yes': env['CXX'] = 'clang++' |