3 releases (stable)

1.1.0 Jan 13, 2022
1.0.0 Oct 20, 2021
0.1.0 Sep 26, 2021

#24 in #directive

Download history 30/week @ 2023-12-04 31/week @ 2023-12-11 46/week @ 2023-12-18 22/week @ 2023-12-25 4/week @ 2024-01-01 37/week @ 2024-01-08 29/week @ 2024-01-15 62/week @ 2024-01-22 17/week @ 2024-01-29 34/week @ 2024-02-05 31/week @ 2024-02-12 76/week @ 2024-02-19 70/week @ 2024-02-26 87/week @ 2024-03-04 77/week @ 2024-03-11 81/week @ 2024-03-18

319 downloads per month
Used in 6 crates (via build_cfg)

MIT license

11KB
240 lines

crates.io

build_cfg

Test cfg directives at build time!

Currently, cfg directives do not work "correctly" in a build script. This is because the build script must be compiled for the host machine to execute. Therefore, it is always compiled to target the native environment.

This means that we can't conditionally compile stuff in our build scripts depending on the target platform we pass in with --target. This crate aims to solve this problem by collecting and evaluating cfg directives at runtime during the build script.

Example

#[macro_use]
extern crate build_cfg;

#[build_cfg_main]
fn main() {
    if build_cfg!(all(target_os = "windows", target_pointer_width = "64")) {
        println!("Building for Windows 64-bit");
    } else {
        println!("Not building for Windows 64-bit");
    }
}

Dependencies

~1.5MB
~35K SLoC