浏览代码

Disable incremental + LTO

This causes errors in more recent versions of rustc
Alex Crichton 7 年之前
父节点
当前提交
a076c9aaa7
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      ci/run.sh

+ 1 - 0
ci/run.sh

@@ -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