diff options
| author | bors <bors@rust-lang.org> | 2017-11-12 18:06:46 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-11-12 18:06:46 +0000 |
| commit | fb5ba4ef90bda82b4aa7328927d4413c7f33683d (patch) | |
| tree | e0ab8e6cead0bff17bebfaea144f8c6b3adead0a | |
| parent | 3d2dc6e9402824f5fecba4f076d0bf2bcd01cbeb (diff) | |
| parent | f6cc9ee7ad2ddc22ef768befc880411964d2d9ed (diff) | |
| download | rust-fb5ba4ef90bda82b4aa7328927d4413c7f33683d.tar.gz rust-fb5ba4ef90bda82b4aa7328927d4413c7f33683d.zip | |
Auto merge of #45908 - alexcrichton:disable-thinlto-libtest, r=Mark-Simulacrum
rustbuild: Disable ThinLTO for libtest Right now ThinLTO is generating bad dwarf which is tracked by #45511, but this is causing issues on OSX (#45768) where `dsymutil` is segfaulting and failing to produce output. Closes #45768
| -rw-r--r-- | src/bootstrap/builder.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index c8e808a0188..cf9659350c1 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -624,6 +624,7 @@ impl<'a> Builder<'a> { } if mode != Mode::Libstd && // FIXME(#45320) + mode != Mode::Libtest && // FIXME(#45511) self.config.rust_codegen_units.is_none() && self.build.is_rust_llvm(compiler.host) { |
