From 1c57dbfb3b3df0b6d5d5ec1b20372e354a45083f Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 24 May 2014 20:08:15 +0200 Subject: [PATCH] fix typo link*er*_flags for OSX w/c++11 --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 7e7fe013e8..7f3e1a1120 100644 --- a/wscript +++ b/wscript @@ -153,7 +153,7 @@ def set_compiler_flags (conf,opt): cxx_flags.append('-std=c++11') if platform == "darwin": cxx_flags.append('-stdlib=libc++') - link_flags.append('-lc++') + linker_flags.append('-lc++') # Prevents visibility issues in standard headers conf.define("_DARWIN_C_SOURCE", 1)