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

Unified Diff: build/README.txt

Issue 7134016: Add support for building Xcode project files from GYP files (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 6 months 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/common.gypi » ('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 8223)
+++ build/README.txt (working copy)
@@ -9,24 +9,48 @@
$ 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 and build 32-bit version on Linux:
--------------------------------------------------------
-$ GYP_DEFINES=target_arch=ia32 build/gyp_v8
-$ make
+$ build/gyp_v8 -D target_arch=ia32
+$ make BUILDTYPE=Debug
+$ out/Debug/shell
+$ make BUILDTYPE=Release
+$ out/Release/shell
To generate Makefiles and build 64-bit version on Linux:
--------------------------------------------------------
-$ GYP_DEFINES=target_arch=x64 build/gyp_v8
-$ make
+$ build/gyp_v8 -D target_arch=x64
+$ make BUILDTYPE=Debug
+$ out/Debug/shell
+$ make BUILDTYPE=Release
+$ out/Release/shell
To generate Makefiles and build for the arm simulator on Linux:
---------------------------------------------------------------
-$ build/gyp_v8 -I build/arm.gypi
-$ make
+$ build/gyp_v8 -I build/armu.gypi
+$ make BUILDTYPE=Debug
+$ out/Debug/shell
+$ make BUILDTYPE=Release
+$ out/Release/shell
+
+To generate Xcode project files on Mac OS:
+------------------------------------------
+
+$ build/gyp_v8 -D target_arch=ia32
+$ xcodebuild -project build/all.xcodeproj -configuration Debug
+$ samples/build/Debug/shell
+$ xcodebuild -project build/all.xcodeproj -configuration Release
+$ samples/build/Release/shell
+
+
To generate Visual Studio solution and project files on Windows:
----------------------------------------------------------------
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698