summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-12-23 02:26:24 +0100
committerCarl Hetherington <cth@carlh.net>2024-12-23 02:26:24 +0100
commit02bfcefc45de607483c6f33240cae4dc8f79045f (patch)
tree92e4a719286bcb9323255ce3fa99653b4059a3dd /cscript
parenta4f640379500da4dd2c9698bcc4a4972b8149a70 (diff)
fixup! Separate C++17 from newer *mm API.
Diffstat (limited to 'cscript')
-rw-r--r--cscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/cscript b/cscript
index a753ca4..f23ef22 100644
--- a/cscript
+++ b/cscript
@@ -32,6 +32,9 @@ def build(target, options):
if 'c++17' in options and options['c++17']:
cmd += ' --c++17'
+ if 'new-mm' in options and options['new-mm']:
+ cmd += ' --new-mm'
+
target.command(cmd)
target.command('./waf build install')