Revision: 3574 Author: [email protected] Date: Mon Jan 11 02:00:07 2010 Log: Fix building of D8
This fixes building D8 when SCons cannot figure the build environment and it is passed using the env argument. This is usually only used when building with Visual Studio 2008.
Review URL: http://codereview.chromium.org/542009 http://code.google.com/p/v8/source/detail?r=3574 Modified: /branches/bleeding_edge/SConstruct ======================================= --- /branches/bleeding_edge/SConstruct Mon Dec 14 02:20:35 2009 +++ /branches/bleeding_edge/SConstruct Mon Jan 11 02:00:07 2010 @@ -949,6 +949,7 @@ d8_env = Environment() d8_env.Replace(**context.flags['d8']) + context.ApplyEnvOverrides(d8_env) shell = d8_env.Program('d8' + suffix, object_files + shell_files) context.d8_targets.append(shell)
-- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
