I'm not experienced in windows build system at all but I have already
run into the same problem on linux.
I think you should modify the tools/visual_studio/js2c.cmd:6 line:
remove the %TARGET_DIR%\natives-empty.cc argument.
The generating of the natives-empty.cc file isn't needed anymore.
Regards,
Peter
> --
> v8-users mailing list
> v8-u...@googlegroups.com
> http://groups.google.com/group/v8-users
>
An experimental-libraries.cc file need to be generated for linking
v8_mksnapshot.
You can generate it with a similar command like at
tools/visual_studio/js2c.cmd:6.
Try to add the following line to the js2c.cmd file:
%PYTHON% ..\js2c.py %TARGET_DIR%\experimental-libraries.cc EXPERIMENTAL
%SOURCE_DIR%\macros.py %SOURCE_DIR%\proxy.js
I'm not sure it's correct because I couldn't try it. Probably you should
add the experimental-libraries object to the build system too.
The idea is based on the solution in src/SConscript (look
"experimental_libraries" term up in the SConscript file).
Regards,
Peter
--
--
I found no problems building using SCons. I have Visual Studio 2008, Python
2.7 installed in C:\Python27 and Scons 2.0.1 on top of that.
From a "Visual Studio 2008 Command Prompt" I issue:
Regards,
Søren