diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-25 19:47:27 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-25 19:47:27 +0000 |
commit | ec9a68914f38540671f2d1ea1b3d8e10e29e50c6 (patch) | |
tree | ca6bca7444f09121470cae1d52342018943fca16 /build | |
parent | e38d21928e3cf0262084aa10fce45941ab87fca4 (diff) | |
download | chromium_src-ec9a68914f38540671f2d1ea1b3d8e10e29e50c6.zip chromium_src-ec9a68914f38540671f2d1ea1b3d8e10e29e50c6.tar.gz chromium_src-ec9a68914f38540671f2d1ea1b3d8e10e29e50c6.tar.bz2 |
When we re-invoke SCons for the V8 build, quiet the warning
from the latest SCons version about the lack of pywin32
extensions making parallel support shaky in some corner cases.
Review URL: http://codereview.chromium.org/4280
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2598 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-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) |