File tree 2 files changed +8
-0
lines changed
src/ci/docker/host-x86_64
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
24
24
xz-utils \
25
25
nodejs \
26
26
mingw-w64 \
27
+ libgccjit-12-dev \
27
28
&& rm -rf /var/lib/apt/lists/*
28
29
29
30
# Install powershell (universal package) so we can test x.ps1 on Linux
@@ -34,6 +35,9 @@ RUN curl -sL "https://github.com/PowerShell/PowerShell/releases/download/v7.3.1/
34
35
COPY scripts/sccache.sh /scripts/
35
36
RUN sh /scripts/sccache.sh
36
37
38
+ # Make `libgccjit.so` accessible.
39
+ RUN ln -s /usr/lib/gcc/x86_64-linux-gnu/12/libgccjit.so /usr/lib/x86_64-linux-gnu/libgccjit.so
40
+
37
41
# We are disabling CI LLVM since this builder is intentionally using a host
38
42
# LLVM, rather than the typical src/llvm-project LLVM.
39
43
ENV NO_DOWNLOAD_CI_LLVM 1
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
15
15
sudo \
16
16
xz-utils \
17
17
tidy \
18
+ libgccjit-12-dev \
18
19
\
19
20
# Install dependencies for chromium browser
20
21
gconf-service \
@@ -61,6 +62,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
61
62
COPY scripts/sccache.sh /scripts/
62
63
RUN sh /scripts/sccache.sh
63
64
65
+ # Make `libgccjit.so` accessible.
66
+ RUN ln -s /usr/lib/gcc/x86_64-linux-gnu/12/libgccjit.so /usr/lib/x86_64-linux-gnu/libgccjit.so
67
+
64
68
COPY host-x86_64/x86_64-gnu-tools/checktools.sh /tmp/
65
69
66
70
RUN curl -sL https://nodejs.org/dist/v14.20.0/node-v14.20.0-linux-x64.tar.xz | tar -xJ
You can’t perform that action at this time.
0 commit comments