blob: e6fa9c09c73a232a32eede25c01394767dd17f48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#!/bin/bash
set -o nounset
set -o errexit
V8_REV=e8adbe7821be5be02ef187912a74dde1152eefb1
sync=YES
config=Release
while [[ $# > 0 ]]; do
flag="$1"
case $flag in
--no-sync)
sync=NO
;;
--debug)
config=Debug
;;
*)
echo "unknown arg ${flag}"
;;
esac
shift
done
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
ROOT_DIR="$(dirname "${SCRIPT_DIR}")"
cd ${ROOT_DIR}/third_party/v8-native-prototype
# copied from v8-native-prototype/install-dependencies.sh, but this fetches a
# shallow clone.
if [[ ! -d depot_tools ]]; then
echo "Cloning depot_tools"
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
fi
export PATH=$PWD/depot_tools:$PATH
if [[ ${sync} = "YES" ]]; then
if [[ ! -d v8 ]]; then
echo "Fetching v8"
mkdir v8
pushd v8
fetch --no-history v8
ln -fs $PWD/.. v8/third_party/wasm
popd
else
pushd v8/v8
git fetch origin
git checkout origin/master
popd
fi
pushd v8
gclient update --revision=${V8_REV}
popd
fi
# Don't use the CC from the environment; v8 doesn't seem to build properly with
# it.
unset CC
cd v8/v8
GYP_GENERATORS=ninja build/gyp_v8 -Dv8_wasm=1 -Dwerror=
time ninja -C out/${config} d8
|