Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mk: Move from -D warnings to #![deny(warnings)] #31120

Merged
merged 3 commits into from
Jan 27, 2016

Commits on Jan 25, 2016

  1. 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
    alexcrichton committed Jan 25, 2016
    Configuration menu
    Copy the full SHA
    2273b52 View commit details
    Browse the repository at this point in the history
  2. rustc_mir: Mark the crate as unstable

    Wouldn't want to be able to link to this on stable Rust!
    alexcrichton committed Jan 25, 2016
    Configuration menu
    Copy the full SHA
    4b3c355 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2016

  1. Fix warnings during tests

    The deny(warnings) attribute is now enabled for tests so we need to weed out
    these warnings as well.
    alexcrichton committed Jan 26, 2016
    Configuration menu
    Copy the full SHA
    cb343c3 View commit details
    Browse the repository at this point in the history