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.
 
 
 
 
 
 
Andrei Sedoi cc517497e6 v8: fix build for mips32r2 architecture 12 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 deps: downgrade v8 to 3.14.5 12 years ago
common.gypi v8: fix build for mips32r2 architecture 12 years ago
gyp_v8 v8: upgrade to v3.11.10 13 years ago
standalone.gypi deps: update v8 to 3.15.11 12 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:
-----------------------