diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-01-21 15:26:19 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-01-24 20:35:55 -0800 |
| commit | 2273b5202354b3091f493cfcfa5bf48165e92b1e (patch) | |
| tree | b2278359e6147284131500eed2706c8a93c9fbe0 /src/libstd/lib.rs | |
| parent | 6866f1361debf5857856ff95eeee806bb7bea738 (diff) | |
| download | rust-2273b5202354b3091f493cfcfa5bf48165e92b1e.tar.gz rust-2273b5202354b3091f493cfcfa5bf48165e92b1e.zip | |
mk: Move from `-D warnings` to `#![deny(warnings)]`
This commit removes the `-D warnings` flag being passed through the makefiles to all crates to instead be a crate attribute. We want these attributes always applied for all our standard builds, and this is more amenable to Cargo-based builds as well. Note that all `deny(warnings)` attributes are gated with a `cfg(stage0)` attribute currently to match the same semantics we have today
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 9adea351e3d..bc8fafd7fb1 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -273,6 +273,7 @@ #![deny(missing_docs)] #![allow(unused_features)] // std may use features in a platform-specific way +#![cfg_attr(not(stage0), deny(warnings))] #[cfg(test)] extern crate test; #[cfg(test)] #[macro_use] extern crate log; |
