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