We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ccb5eb commit 92e3d15Copy full SHA for 92e3d15
rocky-8/Dockerfile
@@ -40,6 +40,12 @@ RUN patch -p0 -i /tmp/gcc-8.diff
40
RUN \
41
echo "checkout_google_benchmark = false" > /v8/build/config/gclient_args.gni
42
43
+RUN \
44
+ cd /usr/bin &&\
45
+ ln -s g++ $(uname -m)-linux-gnu-g++ &&\
46
+ ln -s gcc $(uname -m)-linux-gnu-gcc &&\
47
+ ln -s ar $(uname -m)-linux-gnu-ar
48
+
49
RUN cd /v8 &&\
50
gn gen v8.static -vv --fail-on-unused-args \
51
--args='v8_monolithic=true \
@@ -55,6 +61,7 @@ RUN cd /v8 &&\
55
61
v8_enable_i18n_support=false \
56
62
v8_use_external_startup_data=false \
57
63
use_custom_libcxx=false \
64
+ arm_control_flow_integrity="none" \
58
65
use_sysroot=false'
59
66
60
67
RUN cd /v8 && ninja -C v8.static -j2 "v8_monolith" "d8"
0 commit comments