README.txt 2.21 KB
Newer Older
1 2 3 4 5 6 7
This directory contains the V8 GYP files used to generate actual project files
for different build systems.

This is currently work in progress but this is expected to replace the SCons
based build system.

To use this a checkout of GYP is needed inside this directory. From the root of
8
the V8 project do the following:
9 10 11

$ svn co http://gyp.googlecode.com/svn/trunk build/gyp

12 13 14 15
Note for the command lines below that Debug is the default configuration,
so specifying that on the command lines is not required.


16 17
To generate Makefiles on Linux:
-------------------------------
18

19
$ build/gyp_v8
20

21 22
This will build makefiles for ia32, x64 and the ARM simulator with names
Makefile-ia32, Makefile-x64 and Makefile-armu respectively.
23

24
To build and run for ia32 in debug and release version do:
25

26
$ make -f Makefile-ia32
27
$ out/Debug/shell
28
$ make -f Makefile-ia32 BUILDTYPE=Release
29 30
$ out/Release/shell

31 32
Change the makefile to build and run for the other architectures.

33 34 35 36

To generate Xcode project files on Mac OS:
------------------------------------------

37 38 39 40 41
$ build/gyp_v8

This will make an Xcode project for the ia32 architecture. To build and run do:

$ xcodebuild -project build/all.xcodeproj
42 43 44 45
$ samples/build/Debug/shell
$ xcodebuild -project build/all.xcodeproj -configuration Release
$ samples/build/Release/shell

46 47 48 49 50 51 52 53 54 55

To generate Visual Studio solution and project files on Windows:
----------------------------------------------------------------

On Windows an additional third party component is required. This is cygwin in
the same version as is used by the Chromium project. This can be checked out
from the Chromium repository. From the root of the V8 project do the following:

> svn co http://src.chromium.org/svn/trunk/deps/third_party/cygwin@66844 third_party/cygwin

56
To run GYP Python is required and it is recommended to use the same version as
57 58 59
is used by the Chromium project. This can also be checked out from the Chromium
repository. From the root of the V8 project do the following:

60
> svn co http://src.chromium.org/svn/trunk/tools/third_party/python_26@89111 third_party/python_26
61

62
Now generate Visual Studio solution and project files for the ia32 architecture:
63

64
> third_party\python_26\python build/gyp_v8
65 66

Now open build\All.sln in Visual Studio.