Disable incremental + LTO

This causes errors in more recent versions of rustc
master
Alex Crichton 2017-12-26 10:14:11 -08:00
parent 3a9ba44406
commit a076c9aaa7
1 changed files with 1 additions and 0 deletions

View File

@ -115,6 +115,7 @@ RUSTFLAGS="-C debug-assertions=no" \
# TODO(#79) fix the undefined references problem for debug-assertions+lto
if [ -z "$DEBUG_LTO_BUILD_DOESNT_WORK" ]; then
RUSTFLAGS="-C debug-assertions=no" \
CARGO_INCREMENTAL=0 \
$cargo rustc --features "$INTRINSICS_FEATURES" --target $1 --example intrinsics -- -C lto
fi
$cargo rustc --features "$INTRINSICS_FEATURES" --target $1 --example intrinsics --release -- -C lto