File tree 2 files changed +7
-0
lines changed
docker/host-x86_64/x86_64-gnu-tools
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,8 @@ RUN sh /scripts/sccache.sh
70
70
# Fix rustc_codegen_gcc lto issues.
71
71
ENV GCC_EXEC_PREFIX="/usr/lib/gcc/"
72
72
73
+ ENV USE_IN_TREE_LIBTEST_ON_COMPILETEST 1
74
+
73
75
COPY host-x86_64/x86_64-gnu-tools/checktools.sh /tmp/
74
76
75
77
COPY scripts/nodejs.sh /scripts/
Original file line number Diff line number Diff line change @@ -134,6 +134,7 @@ if [ "$DEPLOY$DEPLOY_ALT" = "1" ]; then
134
134
135
135
CODEGEN_BACKENDS=" ${CODEGEN_BACKENDS:- llvm} "
136
136
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set rust.codegen-backends=$CODEGEN_BACKENDS "
137
+ RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set build.compiletest-use-stage0-libtest=false"
137
138
else
138
139
# We almost always want debug assertions enabled, but sometimes this takes too
139
140
# long for too little benefit, so we just turn them off.
@@ -186,6 +187,10 @@ else
186
187
if [ " $NO_DOWNLOAD_CI_RUSTC " = " " ]; then
187
188
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set rust.download-rustc=if-unchanged"
188
189
fi
190
+
191
+ if [ " $USE_IN_TREE_LIBTEST_ON_COMPILETEST " = " 1" ]; then
192
+ RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set build.compiletest-use-stage0-libtest=false"
193
+ fi
189
194
fi
190
195
191
196
if [ " $ENABLE_GCC_CODEGEN " = " 1" ]; then
You can’t perform that action at this time.
0 commit comments