Issue 36: Can't Build on Windows Vista 32-bit with VS 2008
http://code.google.com/p/v8/issues/detail?id=36

Comment #1 by sgjesse:
This might be a problem related to how SCons set up the environment. SCons  
does not
use the environment of the shell/command line from where it is invoked, but  
tries to
find the tools etc. from knowledge of how tools are installed. For Visual  
Studio this
includes looking in the registry for installation paths etc. For Visual C++  
2008
Express this does not locate the INCLUDE and LIB path correctly. For the  
error you
are getting it seems like the PATH is not configured correctly by SCons. On  
the V8
wiki page "Building on Windows"  
(http://code.google.com/p/v8/wiki/BuildingOnWindows)
there is a description of how to set the correct INCLUDE and LIB path for  
For Visual
C++ 2008 Express. Take a look at that and try to add a PATH definition  
which includes
the path to the C++ compiler and related tools.

To see the actual environment used you can dump it by adding the statement

   print env.Dump()

to the method ConfigureObjectFiles in src/SConscript after the environment  
has been
configured




-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to