Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit c2c6b06

Browse files
Fix invalid enabling of gcc backend in run.sh
1 parent f40f980 commit c2c6b06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ci/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ else
128128

129129
if [[ "${ENABLE_GCC_CODEGEN}" == "1" ]]; then
130130
# Test the Cranelift backend in CI. Bootstrap knows which targets to run tests on.
131-
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-backends=llvm,cranelift"
131+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-backends=llvm,cranelift,gcc"
132132
else
133133
# Test the Cranelift and GCC backends in CI. Bootstrap knows which targets to run tests on.
134-
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-backends=llvm,cranelift,gcc"
134+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-backends=llvm,cranelift"
135135
fi
136136

137137
# We enable this for non-dist builders, since those aren't trying to produce

0 commit comments

Comments
 (0)