File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ ENV version=$v8_version
55
66ENV target x86.static
77ENV GYP_GENERATORS ninja
8- ENV PATH="/depot_tools:/opt/rh/gcc-toolset-10/root/bin: ${PATH}"
8+ ENV PATH="/depot_tools:${PATH}"
99ENV pkgdir /package
1010
11- RUN dnf update -y && \
12- dnf upgrade -y && \
13- dnf install -y python38 bzip2 xz git glib2-devel gcc-toolset-10-{gcc- c++, libatomic-devel} && \
11+ RUN yum update -y && \
12+ yum upgrade -y && \
13+ yum install -y python38 xz git gcc-c++ bzip2 libatomic glib2 -devel && \
1414 ln -s /usr/bin/python3 /usr/bin/python
1515
1616RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools
@@ -22,6 +22,9 @@ WORKDIR /v8
2222RUN gclient sync -D --force --reset && \
2323 gclient sync --revision ${version}
2424
25+ # Workaround for GCC-8 bug
26+ RUN sed -i.bak 's|tuple()|tuple{}|g' src/compiler/turboshaft/operations.h
27+
2528RUN gn gen ${target} -vv --fail-on-unused-args \
2629 --args='v8_monolithic=true \
2730 v8_static_library=true \
You can’t perform that action at this time.
0 commit comments