Skip to content

Commit 9ad97fe

Browse files
committed
Use rustc from stage0 instead of stage0-sysroot
It contains the right LLVM libraries.
1 parent bdc8b82 commit 9ad97fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/build-with-patched-std/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
python3 x.py build library --stage 0
4242
4343
TEMP_BUILD_OUTPUT=$(mktemp test-binary-XXXXXXXX)
44-
"$RUSTC_BUILD_DIR/stage0-sysroot/bin/rustc" $RUSTC_FLAGS "${{ inputs.main-rs }}" -o "$TEMP_BUILD_OUTPUT"
44+
"$RUSTC_BUILD_DIR/stage0/bin/rustc" $RUSTC_FLAGS "${{ inputs.main-rs }}" -o "$TEMP_BUILD_OUTPUT"
4545
BINARY_SIZE=$(stat -c '%s' "$TEMP_BUILD_OUTPUT")
4646
rm "$TEMP_BUILD_OUTPUT"
4747

0 commit comments

Comments
 (0)