Revision: 7284
Author:   [email protected]
Date:     Mon Mar 21 05:56:08 2011
Log:      Edited wiki page BuildingOnWindows through web user interface.
http://code.google.com/p/v8/source/detail?r=7284

Modified:
 /wiki/BuildingOnWindows.wiki

=======================================
--- /wiki/BuildingOnWindows.wiki        Mon Mar 21 03:20:38 2011
+++ /wiki/BuildingOnWindows.wiki        Mon Mar 21 05:56:08 2011
@@ -78,6 +78,26 @@
 {{{
 > scons env="PATH:%PATH%,INCLUDE:%INCLUDE%,LIB:%LIB%"
 }}}
+
+== Building 64-bit V8 on 64-bit Windows 7 ==
+A 64-bit build of V8 can be built on Windows 7 using Visual Studio 2008 and MS Windows SDK v7.0 or v7.1. 64-bit V8 on Windows is not currently used in any applications we know of, but it builds and passes all tests.
+Here the commands that work for us:
+
+* Open a "Visual Studio 2008 x64 Win64 Command Prompt"
+
+{{{
+> scons env="PATH:%PATH%,INCLUDE:%INCLUDE%,LIB:%LIB%" -j4 arch=x64 mode=debug"
+}}}
+You may also add "d8", "sample=shell", or "cctests" to build particular targets.
+
+To run tests,
+
+{{{
+python tools/test.py -j4 --no-build --mode=debug
+}}}
+You may also add "mozilla" or "sputnik" to the end of the command line.
+
+

 ==== Explicit Visual Studio 2008 paths ====
For Visual Studio 2008 the installation on 64-bit Windows Vista has files in both `C:\Program Files` and `C:\Program Files (x86)`. If not using the setup batch file supplied with Visual Studio 2008 the following environment override should used when invoking SCons.

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

Reply via email to