File tree 1 file changed +7
-3
lines changed
src/ci/docker/host-x86_64/dist-x86_64-linux
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,19 @@ mkdir ../gcc-build ../gcc-install
14
14
cd ../gcc-build
15
15
16
16
# Building GCC.
17
+ # We redirect all stdout because the GCC build scripts generate thousands of lines
18
+ # of output. Unfortunately, even when using `--quiet` option for all commands,
19
+ # the output still thousands of lines of output, forcing us to use this solution.
17
20
../gcc-src/configure \
18
21
--enable-host-shared \
19
22
--enable-languages=jit \
20
23
--enable-checking=release \
21
24
--disable-bootstrap \
22
25
--disable-multilib \
23
- --prefix=$( pwd) /../gcc-install
24
- make
25
- make install
26
+ --prefix=$( pwd) /../gcc-install > /dev/null
27
+
28
+ make > /dev/null
29
+ make install > /dev/null
26
30
27
31
rm -rf ../gcc-src
28
32
ln -s /scripts/gcc-install/lib/libgccjit.so /usr/lib/x86_64-linux-gnu/libgccjit.so
You can’t perform that action at this time.
0 commit comments