Skip to content

Commit 72aa65b

Browse files
committed
Auto merge of rust-lang#3864 - RalfJung:miri-bat-nightly, r=RalfJung
miri.bat: use nightly toolchain Hopefully fixes rust-lang/miri#3863 (but I can't test that)
2 parents 0903724 + 2d6489e commit 72aa65b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/tools/miri/miri.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ set MIRI_SCRIPT_TARGET_DIR=%0\..\miri-script\target
55

66
:: If any other steps are added, the "|| exit /b" must be appended to early
77
:: return from the script. If not, it will continue execution.
8-
cargo +stable build %CARGO_EXTRA_FLAGS% -q --target-dir %MIRI_SCRIPT_TARGET_DIR% --manifest-path %0\..\miri-script\Cargo.toml ^
9-
|| (echo Failed to build miri-script. Is the 'stable' toolchain installed? & exit /b)
8+
cargo +nightly build %CARGO_EXTRA_FLAGS% -q --target-dir %MIRI_SCRIPT_TARGET_DIR% --manifest-path %0\..\miri-script\Cargo.toml ^
9+
|| (echo Failed to build miri-script. Is the 'nightly' toolchain installed? & exit /b)
1010

1111
:: Forwards all arguments to this file to the executable.
1212
:: We invoke the binary directly to avoid going through rustup, which would set some extra

0 commit comments

Comments
 (0)