mirror of https://gitee.com/bigwinds/arangodb
added 32/64 switch
This commit is contained in:
parent
ca9f6ebb3f
commit
ccb5561b45
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue