7 releases

new 0.1.6 Apr 17, 2024
0.1.5 Mar 26, 2024
0.1.4 Jul 15, 2023
0.1.3 Mar 3, 2023
0.1.0 Jan 3, 2022

#120 in Build Utils

Download history 1125/week @ 2024-01-01 1479/week @ 2024-01-08 1517/week @ 2024-01-15 1206/week @ 2024-01-22 3928/week @ 2024-01-29 4805/week @ 2024-02-05 4794/week @ 2024-02-12 4546/week @ 2024-02-19 5297/week @ 2024-02-26 5275/week @ 2024-03-04 4572/week @ 2024-03-11 2562/week @ 2024-03-18 3399/week @ 2024-03-25 3331/week @ 2024-04-01 4613/week @ 2024-04-08 2532/week @ 2024-04-15

13,897 downloads per month
Used in 4 crates (2 directly)

MIT/Apache

49KB
1K SLoC

Parser for CARGO_ENCODED_RUSTFLAGS

github crates.io docs.rs build status

CARGO_ENCODED_RUSTFLAGS is one of the environment variables provided by Cargo to build scripts. It synthesizes several sources of flags affecting Cargo's rustc invocations that build scripts might care about:

  • Flags passed via the RUSTFLAGS environment variable,
  • Cargo config entries under target.<triple>.rustflags and target.<cfg>.rustflags and build.rustflags, including from the project-specific Cargo config file and the Cargo config in the user's CARGO_HOME.

If a build script needs to make some rustc invocations, or needs to characterize aspects of the upcoming rustc invocation, it likely needs these flags.

[build-dependencies]
rustflags = "0.1"

Example

This build script uses the cmake crate to compile some C code, and must configure it with a particular C preprocessor #define if the Rust build is being performed with sanitizers.

// build.rs

use rustflags::Flag;
use std::env;
use std::path::PathBuf;

fn main() {
    let manifest_dir = PathBuf::from(env::var_os("CARGO_MANIFEST_DIR").unwrap());
    let lib_source_dir = manifest_dir.join("lib");
    assert!(lib_source_dir.join("CMakeLists.txt").exists());

    let mut builder = cmake::Config::new(lib_source_dir);

    // Look for -Zsanitizer=address
    for flag in rustflags::from_env() {
        if matches!(flag, Flag::Z(z) if z == "sanitizer=address") {
            builder.define("ENABLE_SANITIZERS", "ON");
            builder.define("SANITIZERS", "address");
            break;
        }
    }

    builder.build();
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps