mirror of https://gitee.com/bigwinds/arangodb
13 lines
453 B
Bash
Executable File
13 lines
453 B
Bash
Executable File
#!/bin/bash
|
|
|
|
V8_VERSION=4.3.61
|
|
|
|
tar cvzf precompiled-libraries-${V8_VERSION}.tar.gz \
|
|
.v8-build-64 \
|
|
3rdParty/V8-${V8_VERSION}/include \
|
|
3rdParty/V8-${V8_VERSION}/out/x64.release/obj.target/tools/gyp \
|
|
3rdParty/V8-${V8_VERSION}/third_party/icu/source/common \
|
|
3rdParty/V8-${V8_VERSION}/third_party/icu/source/i18n \
|
|
3rdParty/V8-${V8_VERSION}/third_party/icu/source/io \
|
|
3rdParty/V8-${V8_VERSION}/out/x64.release/obj.target/third_party/icu
|