We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e203ef commit 33b6a90Copy full SHA for 33b6a90
build_sysroot/build_sysroot.sh
@@ -18,7 +18,8 @@ rm -r sysroot/ 2>/dev/null || true
18
export RUSTFLAGS="$RUSTFLAGS -Z force-unstable-if-unmarked"
19
if [[ "$1" == "--release" ]]; then
20
sysroot_channel='release'
21
- RUSTFLAGS="$RUSTFLAGS -Zmir-opt-level=2" cargo build --target $TARGET_TRIPLE --release
+ # FIXME Enable incremental again once rust-lang/rust#74946 is fixed
22
+ CARGO_INCREMENTAL=0 RUSTFLAGS="$RUSTFLAGS -Zmir-opt-level=2" cargo build --target $TARGET_TRIPLE --release
23
else
24
sysroot_channel='debug'
25
cargo build --target $TARGET_TRIPLE
0 commit comments