1
0
Fork 0

added 32/64 switch

This commit is contained in:
Frank Celler 2012-02-09 22:59:36 +01:00
parent ca9f6ebb3f
commit ccb5561b45
1 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,12 @@ dnl ----------------------------------------------------------------------------
V8_CPPFLAGS="-I${srcdir}/3rdParty/V8/include"
V8_LDFLAGS=""
V8_LIBS="${srcdir}/3rdParty/V8/out/x64.release/obj.target/tools/gyp/libv8_base.a ${srcdir}/3rdParty/V8/out/x64.release/obj.target/tools/gyp/libv8_nosnapshot.a"
if text "x$tr_BITS" == "x64"; then
V8_LIBS="${srcdir}/3rdParty/V8/out/x64.release/libv8_base.a ${srcdir}/3rdParty/V8/out/x64.release/libv8_nosnapshot.a"
else
V8_LIBS="${srcdir}/3rdParty/V8/out/ia32.release/libv8_base.a ${srcdir}/3rdParty/V8/out/ia32.release/libv8_nosnapshot.a"
fi
TRI_V8_VERSION="3.9.4.0"