We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f3eb1c commit 6d312a2Copy full SHA for 6d312a2
src/ci/docker/host-x86_64/dist-x86_64-linux/build-gccjit.sh
@@ -20,9 +20,14 @@ cd ../gcc-build
20
--enable-checking=release \
21
--disable-bootstrap \
22
--disable-multilib \
23
- --prefix=$(pwd)/../gcc-install
24
-make
25
-make install
+ --prefix=$(pwd)/../gcc-install \
+ --quiet
+
26
+# We redirect stdout because the GCC build scripts generate thousands of lines
27
+# of output. Unfortunately, even when using `--quiet` option for all commands,
28
+# the output still thousands of lines of output, forcing us to use this solution.
29
+make > /dev/null
30
+make install > /dev/null
31
32
rm -rf ../gcc-src
33
ln -s /scripts/gcc-install/lib/libgccjit.so /usr/lib/x86_64-linux-gnu/libgccjit.so
0 commit comments