summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorMarcelo Fernandez <marcelofg55@gmail.com>2018-03-01 20:30:55 -0300
committerMarcelo Fernandez <marcelofg55@gmail.com>2018-03-01 20:30:55 -0300
commit5162132236b1cbdd8a4f284ca102bea1e4320fd8 (patch)
tree268a1272abdcf0e605d742889ae1526bec29e8b5 /SConstruct
parent3820c0537b852edd5c142401384fc9a3cfe86356 (diff)
downloadredot-cpp-5162132236b1cbdd8a4f284ca102bea1e4320fd8.tar.gz
Fix compile problem on OS X
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index b251d43..18fb570 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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++'