diff options
author | Robin Watts <robin.watts@artifex.com> | 2013-05-30 17:16:03 -0400 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2013-05-30 17:16:46 -0400 |
commit | 42db34aa0892c86e20da1063d7e4b07383fd73fe (patch) | |
tree | e09a55a4f8911d8660ef55432dcec170319bb98a | |
parent | 0ae7a6fc4c7b234c35744d583da3ce155a433dc2 (diff) | |
download | mupdf-42db34aa0892c86e20da1063d7e4b07383fd73fe.tar.xz |
Update Makefile for V8 MacOS X operation.
Link with 64bit by default.
-rw-r--r-- | Makethird | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -31,13 +31,12 @@ else V8LIB_CHOICE := debug endif +V8_ARCH ?= x64 + # If you are building for 32bit linux use V8_ARCH=ia32 -# MacOSX has a 64bit kernel, but a 32 bit userspace. ifeq "$(OS)" "Darwin" -V8_ARCH ?= ia32 V8LIBS = -L$(V8_DIR)/out-mac/$(V8_ARCH).$(V8LIB_CHOICE)/ -lv8_base -lv8_snapshot else -V8_ARCH ?= x64 V8LIBS = -L$(V8_DIR)/out/$(V8_ARCH).$(V8LIB_CHOICE)/obj.target/tools/gyp -lv8_base -lv8_snapshot -lpthread endif |