diff options
| author | bors <bors@rust-lang.org> | 2017-11-13 11:46:55 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-11-13 11:46:55 +0000 |
| commit | b7ccb0a5a7ee5bf51dbb63490c0d7166cfb993e2 (patch) | |
| tree | 60993f81e5c4a7567ae16747951dd74f5915110f /src/bootstrap | |
| parent | e312c8a8c3ecd7fead1e8a6cc591360dc73c9e79 (diff) | |
| parent | 7625c79f2a8947388012d0636cac914c47771eff (diff) | |
| download | rust-b7ccb0a5a7ee5bf51dbb63490c0d7166cfb993e2.tar.gz rust-b7ccb0a5a7ee5bf51dbb63490c0d7166cfb993e2.zip | |
Auto merge of #45810 - SimonSapin:ac-dc, r=aturon
Disable LLVM assertions on Nightly, enable them in "alt" builds. Per IRC discussion https://mozilla.logbot.info/rust-infra/20171106#c13812170-c13812204 Background: https://internals.rust-lang.org/t/disabling-llvm-assertions-in-nightly-builds/5388/14
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/config.rs b/src/bootstrap/config.rs index 33c7141e704..35e62f17f2e 100644 --- a/src/bootstrap/config.rs +++ b/src/bootstrap/config.rs @@ -528,7 +528,7 @@ impl Config { // Now that we've reached the end of our configuration, infer the // default values for all options that we haven't otherwise stored yet. - let default = config.channel == "nightly"; + let default = false; config.llvm_assertions = llvm_assertions.unwrap_or(default); let default = match &config.channel[..] { |
