diff options
-rw-r--r-- | build/SConscript.v8 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/SConscript.v8 b/build/SConscript.v8 index 8140e10..ddf5cea 100644 --- a/build/SConscript.v8 +++ b/build/SConscript.v8 @@ -38,7 +38,9 @@ v8 = env.Command(v8_scons_targets, 'cd ../v8 && $PYTHON $SCONS $SCONSFLAGS snapshot=on ' + 'sample=shell', SCONS='../third_party/scons/scons.py', - SCONSFLAGS='-Q --warn=no-deprecated' + cpu_flag) + SCONSFLAGS=('-Q ' + '--warn=no-deprecated ' + '--warn=no-no-parallel-support' + cpu_flag)) env.AlwaysBuild(v8) env.Install('$V8_DIR', v8) |