summaryrefslogtreecommitdiff
path: root/SCons/Script
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2022-12-04 14:02:45 -0800
committerWilliam Deegan <bill@baddogconsulting.com>2022-12-04 14:02:45 -0800
commit3e9de33fa693a14e05143346646b2f87993cca4d (patch)
tree947112fd77a7518a8bc4abef504a002f14fd640d /SCons/Script
parentd7158388ca6d493f9139157408e8f80b2b846aa4 (diff)
downloadscons-git-3e9de33fa693a14e05143346646b2f87993cca4d.tar.gz
Added --experimental=tm_v2 which switches to use Andrew Morrow's new ParallelJob implementation. WHich should scale much better for highly parallel builds
Diffstat (limited to 'SCons/Script')
-rw-r--r--SCons/Script/SConsOptions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/SCons/Script/SConsOptions.py b/SCons/Script/SConsOptions.py
index f3b4708c5..a3e3ea8b3 100644
--- a/SCons/Script/SConsOptions.py
+++ b/SCons/Script/SConsOptions.py
@@ -40,7 +40,7 @@ SUPPRESS_HELP = optparse.SUPPRESS_HELP
diskcheck_all = SCons.Node.FS.diskcheck_types()
-experimental_features = {'warp_speed', 'transporter', 'ninja'}
+experimental_features = {'warp_speed', 'transporter', 'ninja', 'tm_v2'}
def diskcheck_convert(value):
@@ -65,7 +65,7 @@ def diskcheck_convert(value):
class SConsValues(optparse.Values):
"""
Holder class for uniform access to SCons options, regardless
- of whether or not they can be set on the command line or in the
+ of whether they can be set on the command line or in the
SConscript files (using the SetOption() function).
A SCons option value can originate three different ways: