summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/SConscript.v811
1 files changed, 2 insertions, 9 deletions
diff --git a/build/SConscript.v8 b/build/SConscript.v8
index 67f17c4..c22fb57 100644
--- a/build/SConscript.v8
+++ b/build/SConscript.v8
@@ -9,13 +9,6 @@ Import('env')
if not env.Dir('$CHROME_SRC_DIR/v8').exists():
Return()
-# Grab the -j flag from the outer environment, if available.
-try:
- cpus = env.GetOption('num_jobs')
- cpu_flag = ' -j%d' % cpus
-except AttributeError:
- cpu_flag = ''
-
# The v8 build script wants a 'debug'/'release' string to tell it whether
# to build optimized. Convert our build flags into that form.
mode = 'release'
@@ -26,12 +19,12 @@ env = env.Clone(
V8_MODE = mode,
V8_MODE_DIR = '$V8_DIR/obj/$V8_MODE',
V8_SCONS_COM = '$PYTHON $SCONS $SCONSFLAGS mode=$V8_MODE',
- SCONS='$CHROME_SRC_DIR/third_party/scons/scons.py',
+ SCONS = '$CHROME_SRC_DIR/third_party/scons/scons.py',
SCONSFLAGS = ('-Q '
'-C $OBJ_ROOT/v8 '
'-Y $CHROME_SRC_DIR/v8 '
'--warn=no-deprecated '
- '--warn=no-no-parallel-support' + cpu_flag),
+ '--warn=no-no-parallel-support'),
)
# Rather than build v8 with our own commands, we just shell out to v8's