DescriptionAdd support for Mac OS X 64bit builds with GYP
Note that in order to build for 64bits mode, you'll have
to specify the target architecture explicitely, the default
is still 32bits for Mac OS X.
Example with make and gcc:
$ export GYP_GENERATORS=make
$ make dependencies
$ make -j 8 library=shared x64.release
Example with make and clang:
$ export GYP_GENERATORS=make
$ export CC=/usr/bin/clang
$ export CXX=/usr/bin/clang++
$ export GYP_DEFINES="clang=1"
$ make dependencies
$ make -j 8 library=shared x64.release
Example with xcode:
$ export GYP_GENERATORS=xcode
$ build/gyp_v8 -Dtarget_arch=x64
$ xcodebuild -project build/all.xcodeproj -configuration Release
Contributed by Filipe David Manana <fdmanana@gmail.com>
BUG=
TEST=
Committed: https://code.google.com/p/v8/source/detail?r=11199
Patch Set 1 #Patch Set 2 : Remove unnecessary condition when use_system_v8!=0 #Patch Set 3 : Fixed typo in commit message #
Total comments: 9
Patch Set 4 : Several updates after Jakob's review #Patch Set 5 : Rebased against latest bleeding_edge branch and re-tested #
Messages
Total messages: 10 (0 generated)
|