diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2018-01-28 15:50:03 -0700 |
|---|---|---|
| committer | Mark Simulacrum <mark.simulacrum@gmail.com> | 2018-02-03 18:38:17 -0700 |
| commit | e1f04c04dffc1615fde9dd1e51d27bcc5275cdb2 (patch) | |
| tree | ed7e0e4c8805d3ed42a8868270ce583fe739df71 /src/ci | |
| parent | 616b66dca25a67321b1654e5a65acc6337d63cf4 (diff) | |
| download | rust-e1f04c04dffc1615fde9dd1e51d27bcc5275cdb2.tar.gz rust-e1f04c04dffc1615fde9dd1e51d27bcc5275cdb2.zip | |
Disable ThinLTO for dist builds.
Dist builds should always be as fast as we can make them, and since those run on CI we don't care quite as much for the build being somewhat slower. As such, we don't automatically enable ThinLTO on builds for the dist builders.
Diffstat (limited to 'src/ci')
| -rwxr-xr-x | src/ci/run.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ci/run.sh b/src/ci/run.sh index dab385c0964..02480c6937d 100755 --- a/src/ci/run.sh +++ b/src/ci/run.sh @@ -46,6 +46,7 @@ export RUST_RELEASE_CHANNEL=nightly if [ "$DEPLOY$DEPLOY_ALT" != "" ]; then RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=$RUST_RELEASE_CHANNEL" RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp" + RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-thinlto" if [ "$NO_LLVM_ASSERTIONS" = "1" ]; then RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-llvm-assertions" |
