Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3250)

Unified Diff: build/README.txt

Issue 5701001: Initial attempt to add support for using gyp to build V8 itself... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/README.txt
===================================================================
--- build/README.txt (revision 0)
+++ build/README.txt (revision 0)
@@ -0,0 +1,25 @@
+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
+
+To generate Makefiles and build 32-bit version on Linux:
+
+$ GYP_DEFINES=target_arch=ia32 build/gyp_v8
+$ make
+
+To generate Makefiles and build 64-bit version on Linux:
+
+$ GYP_DEFINES=target_arch=x64 build/gyp_v8
+$ make
+
+To generate Makefiles and build for the arm simulator on Linux:
+
+$ build/gyp_v8 -I build/arm.gypi
+$ make
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698