forked from puerts/backend-v8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ios_simulator.sh
50 lines (40 loc) · 1.33 KB
/
ios_simulator.sh
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
VERSION=$1
[ -z "$GITHUB_WORKSPACE" ] && GITHUB_WORKSPACE="$( cd "$( dirname "$0" )"/.. && pwd )"
cd ~
echo "=====[ Getting Depot Tools ]====="
git clone -q https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH=$(pwd)/depot_tools:$PATH
gclient
mkdir v8
cd v8
echo "=====[ Fetching V8 ]====="
fetch v8
echo "target_os = ['ios']" >> .gclient
cd ~/v8/v8
git checkout refs/tags/$VERSION
gclient sync
# echo "=====[ Patching V8 ]====="
# git apply --cached $GITHUB_WORKSPACE/patch/builtins-puerts.patch
# git checkout -- .
echo "=====[ add ArrayBuffer_New_Without_Stl ]====="
node $GITHUB_WORKSPACE/add_arraybuffer_new_without_stl.js .
echo "=====[ Building V8 ]====="
python ./tools/dev/v8gen.py x64.release -vv -- '
v8_use_external_startup_data = true
v8_use_snapshot = true
v8_enable_i18n_support = false
is_debug = false
v8_static_library = true
ios_enable_code_signing = false
target_os = "ios"
target_cpu = "x64"
v8_enable_pointer_compression = false
'
ninja -C out.gn/x64.release -t clean
ninja -C out.gn/x64.release wee8
strip -S out.gn/x64.release/obj/libwee8.a
node $GITHUB_WORKSPACE/genBlobHeader.js "ios x64" out.gn/x64.release/snapshot_blob.bin
mkdir -p output/v8/Lib/iOS/x64
cp out.gn/x64.release/obj/libwee8.a output/v8/Lib/iOS/x64/
mkdir -p output/v8/Inc/Blob/iOS/x64
cp SnapshotBlob.h output/v8/Inc/Blob/iOS/x64/