You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
isaacs 3b95d88bf2 v8: s/echo -n/echo/. Not all sh's are bash. 13 years ago
..
README.txt Upgrade V8 to 3.6.4 13 years ago
all.gyp Upgrade V8 to 3.6.1 13 years ago
android.gypi Upgrade V8 to 3.8.8 13 years ago
common.gypi v8: s/echo -n/echo/. Not all sh's are bash. 13 years ago
gyp_v8 Upgrade V8 to 3.11.1 13 years ago
standalone.gypi Upgrade V8 to 3.11.1 13 years ago

README.txt

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
the V8 project do the following:

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

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


To generate Makefiles on Linux:
-------------------------------

$ build/gyp_v8

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

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

$ make -f Makefile-ia32
$ out/Debug/shell
$ make -f Makefile-ia32 BUILDTYPE=Release
$ out/Release/shell

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


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