From ec9a68914f38540671f2d1ea1b3d8e10e29e50c6 Mon Sep 17 00:00:00 2001 From: "sgk@google.com" Date: Thu, 25 Sep 2008 19:47:27 +0000 Subject: 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 --- build/SConscript.v8 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'build/SConscript.v8') 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) -- cgit v1.1