summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-11-22 15:37:44 +0100
committerCarl Hetherington <cth@carlh.net>2025-11-22 15:37:44 +0100
commit152d14739f0c91d754a2fd099c9a3daaeabc82f4 (patch)
tree5e8d40157a519c806ccd123c1262def023a65655 /wscript
parent0e77787cad3a63bb56082271b3fafb09fa601f5f (diff)
Build with C++11.mac
Newer boosts require this.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index ddacb3b..b405f07 100644
--- a/wscript
+++ b/wscript
@@ -26,7 +26,7 @@ def options(opt):
def configure(conf):
conf.load('compiler_cxx')
- conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-D_FILE_OFFSET_BITS=64', '-D__STDC_FORMAT_MACROS'])
+ conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-D_FILE_OFFSET_BITS=64', '-D__STDC_FORMAT_MACROS', '-std=c++11'])
conf.env.TARGET_WINDOWS = conf.options.target_windows
conf.env.TARGET_OSX = sys.platform == 'darwin'