We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d0260b commit 8f26f8bCopy full SHA for 8f26f8b
src/bootstrap/defaults/bootstrap.dist.toml
@@ -7,6 +7,8 @@ test-stage = 2
7
doc-stage = 2
8
# When compiling from source, you usually want all tools.
9
extended = true
10
+# Use libtest built from the source tree instead of the precompiled one from stage 0.
11
+compiletest-use-stage0-libtest=false
12
13
# Most users installing from source want to build all parts of the project from source.
14
[llvm]
src/ci/run.sh
@@ -186,6 +186,8 @@ else
186
if [ "$NO_DOWNLOAD_CI_RUSTC" = "" ]; then
187
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.download-rustc=if-unchanged"
188
fi
189
+
190
+ RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.compiletest-use-stage0-libtest=false"
191
192
193
if [ "$ENABLE_GCC_CODEGEN" = "1" ]; then
0 commit comments