forked from puerts/backend-v8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ohos_x64.sh
112 lines (91 loc) · 3.54 KB
/
ohos_x64.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#!/bin/bash
VERSION=$1
NEW_WRAP=$2
[ -z "$GITHUB_WORKSPACE" ] && GITHUB_WORKSPACE="$( cd "$( dirname "$0" )"/.. && pwd )"
if [ "$VERSION" == "10.6.194" -o "$VERSION" == "11.8.172" ]; then
sudo apt-get install -y \
pkg-config \
git \
subversion \
curl \
wget \
build-essential \
python3 \
ninja-build \
xz-utils \
zip
pip install virtualenv
else
sudo apt-get install -y \
pkg-config \
git \
subversion \
curl \
wget \
build-essential \
python \
xz-utils \
zip
fi
cd ~
echo "=====[ Getting Depot Tools ]====="
git clone -q https://chromium.googlesource.com/chromium/tools/depot_tools.git
if [ "$VERSION" != "10.6.194" -a "$VERSION" != "11.8.172" ]; then
cd depot_tools
git reset --hard 8d16d4a
cd ..
fi
export DEPOT_TOOLS_UPDATE=0
export PATH=$(pwd)/depot_tools:$PATH
gclient
mkdir v8
cd v8
echo "=====[ Fetching V8 ]====="
fetch v8
echo "target_os = ['android']" >> .gclient
cd ~/v8/v8
git checkout refs/tags/$VERSION
echo "=====[ fix DEPS ]===="
node -e "const fs = require('fs'); fs.writeFileSync('./DEPS', fs.readFileSync('./DEPS', 'utf-8').replace(\"Var('chromium_url') + '/external/github.com/kennethreitz/requests.git'\", \"'https://github.com/kennethreitz/requests'\"));"
gclient sync
# echo "=====[ Patching V8 ]====="
# git apply --cached $GITHUB_WORKSPACE/patches/builtins-puerts.patches
# git checkout -- .
if [ "$VERSION" == "11.8.172" ]; then
node $GITHUB_WORKSPACE/node-script/do-gitpatch.js -p $GITHUB_WORKSPACE/patches/remove_uchar_include_v11.8.172.patch
fi
if [ "$VERSION" == "9.4.146.24" ]; then
echo "=====[ patch jinja for python3.10+ ]====="
cd third_party/jinja2
node $GITHUB_WORKSPACE/node-script/do-gitpatch.js -p $GITHUB_WORKSPACE/patches/jinja_v9.4.146.24.patch
cd ../..
fi
echo "=====[ patch for ohos ]====="
node $GITHUB_WORKSPACE/node-script/do-gitpatch.js -p $GITHUB_WORKSPACE/patches/ohos_v8_v$VERSION.patch
cd build
node $GITHUB_WORKSPACE/node-script/do-gitpatch.js -p $GITHUB_WORKSPACE/patches/ohos_build_v$VERSION.patch
cd ../third_party/zlib
node $GITHUB_WORKSPACE/node-script/do-gitpatch.js -p $GITHUB_WORKSPACE/patches/ohos_zlib_v$VERSION.patch
cd ../..
CXX_SETTING="use_custom_libcxx=false"
if [ "$NEW_WRAP" == "with_new_wrap" ]; then
echo "=====[ wrap new delete ]====="
CXX_SETTING="use_custom_libcxx=true"
fi
echo "=====[ add ArrayBuffer_New_Without_Stl ]====="
node $GITHUB_WORKSPACE/node-script/add_arraybuffer_new_without_stl.js . $VERSION $NEW_WRAP
node $GITHUB_WORKSPACE/node-script/patchs.js . $VERSION $NEW_WRAP
rm -rf third_party/android_ndk
echo "=====[ Building V8 ]====="
gn gen --args="target_os=\"ohos\" target_cpu=\"x64\" is_debug = false v8_enable_i18n_support= false v8_target_cpu = \"x64\" use_goma = false v8_use_external_startup_data = false v8_static_library = true strip_debug_info = false symbol_level=1 $CXX_SETTING use_custom_libcxx_for_host=true v8_enable_pointer_compression=false use_musl=true" out.gn/x64.release
ninja -C out.gn/x64.release -t clean
ninja -v -C out.gn/x64.release wee8
mkdir -p output/v8/Lib/OHOS/x64
if [ "$NEW_WRAP" == "with_new_wrap" ]; then
export PATH="$OHOS_NDK_HOME/llvm/bin:$PATH"
bash $GITHUB_WORKSPACE/rename_symbols_posix.sh x64 output/v8/Lib/OHOS/x64
fi
cp out.gn/x64.release/obj/libwee8.a output/v8/Lib/OHOS/x64/
mkdir -p output/v8/Bin/OHOS/x64
find out.gn/ -type f -name v8cc -exec cp "{}" output/v8/Bin/OHOS/x64 \;
find out.gn/ -type f -name mksnapshot -exec cp "{}" output/v8/Bin/OHOS/x64 \;