File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ export CARGO_EXTRA_FLAGS="--locked"
2222
2323# Prepare debug build for direct `./miri` invocations
2424echo " Building debug version of Miri"
25- ./miri check --no-default-features # make sure this can be built
26- ./miri check --all-features # and this, too
25+ # ./miri check --no-default-features # make sure this can be built
26+ # ./miri check --all-features # and this, too
2727./miri build --all-targets # the build that all the `./miri test` below will use
2828
2929endgroup
Original file line number Diff line number Diff line change 33# Instead of doing just `cargo run --manifest-path .. $@`, we invoke miri-script binary directly. Invoking `cargo run` goes through
44# rustup (that sets it's own environmental variables), which is undesirable.
55MIRI_SCRIPT_TARGET_DIR=" $( dirname " $0 " ) " /miri-script/target
6- cargo +stable build $CARGO_EXTRA_FLAGS -q --target-dir " $MIRI_SCRIPT_TARGET_DIR " --manifest-path " $( dirname " $0 " ) " /miri-script/Cargo.toml
6+ cargo build $CARGO_EXTRA_FLAGS -q --target-dir " $MIRI_SCRIPT_TARGET_DIR " --manifest-path " $( dirname " $0 " ) " /miri-script/Cargo.toml
77" $MIRI_SCRIPT_TARGET_DIR " /debug/miri-script " $@ "
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ 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 || exit /b
8+ cargo build %CARGO_EXTRA_FLAGS% -q --target-dir %MIRI_SCRIPT_TARGET_DIR% --manifest-path %0 \..\miri-script\Cargo.toml || exit /b
99
1010:: Forwards all arguments to this file to the executable.
1111:: We invoke the binary directly to avoid going through rustup, which would set some extra
You can’t perform that action at this time.
0 commit comments