File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
src/ci/docker/host-x86_64 Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,20 @@ git checkout 78dc50f0e50e6cd1433149520bd512a4e0eaa1bc
1313mkdir ../gcc-build ../gcc-install
1414cd ../gcc-build
1515
16+ . /tmp/shared.sh
17+
1618# Building GCC.
1719../gcc-src/configure \
1820 --enable-host-shared \
1921 --enable-languages=jit \
2022 --enable-checking=release \
2123 --disable-bootstrap \
2224 --disable-multilib \
23- --prefix=$( pwd) /../gcc-install
24- make
25- make install
25+ --prefix=$( pwd) /../gcc-install \
26+ --quiet
27+
28+ hide_output make
29+ hide_output make install
2630
2731rm -rf ../gcc-src
2832ln -s /scripts/gcc-install/lib/libgccjit.so /usr/lib/x86_64-linux-gnu/libgccjit.so
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ ENV RUST_CONFIGURE_ARGS \
5858 --set rust.thin-lto-import-instr-limit=10
5959
6060COPY host-x86_64/x86_64-gnu-llvm-16/script.sh /tmp/
61+ COPY host-x86_64/dist-x86_64-linux/shared.sh /tmp/
6162
6263COPY host-x86_64/dist-x86_64-linux/build-gccjit.sh /scripts/
6364
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ ENV RUST_CONFIGURE_ARGS \
5858
5959COPY host-x86_64/x86_64-gnu-llvm-16/script.sh /tmp/
6060
61+ COPY host-x86_64/dist-x86_64-linux/shared.sh /tmp/
6162COPY host-x86_64/dist-x86_64-linux/build-gccjit.sh /scripts/
6263
6364RUN sh /scripts/build-gccjit.sh /scripts
You can’t perform that action at this time.
0 commit comments