We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25dee4e commit 8034154Copy full SHA for 8034154
src/ci/docker/host-x86_64/dist-x86_64-linux/dist.sh
@@ -10,4 +10,7 @@ python3 ../x.py build --set rust.debug=true opt-dist
10
build-manifest bootstrap
11
12
# Use GCC for building GCC, as it seems to behave badly when built with Clang
13
-CC=/rustroot/bin/cc CXX=/rustroot/bin/c++ python3 ../x.py dist gcc
+# Only build GCC on full builds, not try builds
14
+if [ "${DIST_TRY_BUILD:-0}" == "0" ]; then
15
+ CC=/rustroot/bin/cc CXX=/rustroot/bin/c++ python3 ../x.py dist gcc
16
+fi
0 commit comments