#build #target #build-script #json #target-triple #env-var #triple

build target_build_utils

DEPRECATED: Use Cargo environment variables CARGO_CFG_TARGET_*

7 releases

Uses old Rust 2015

0.3.1 May 2, 2017
0.3.0 Feb 10, 2017
0.2.1 Feb 3, 2017
0.2.0 Jan 18, 2017
0.1.1 Jul 29, 2016

#11 in #target-triple

Download history 13193/week @ 2023-11-27 13199/week @ 2023-12-04 11476/week @ 2023-12-11 11037/week @ 2023-12-18 12102/week @ 2023-12-25 11359/week @ 2024-01-01 11587/week @ 2024-01-08 11516/week @ 2024-01-15 10899/week @ 2024-01-22 12167/week @ 2024-01-29 14158/week @ 2024-02-05 10259/week @ 2024-02-12 6317/week @ 2024-02-19 8044/week @ 2024-02-26 9736/week @ 2024-03-04 4426/week @ 2024-03-11

29,139 downloads per month
Used in 136 crates (3 directly)

ISC/Apache-2.0

31KB
518 lines

DEPRECATED

Use environment variables set by cargo from 1.14.0 onwards.

They look like this: CARGO_CFG_TARGET_OS, CARGO_CFG_TARGET_ENV


Travis CI Appveyor CI

Utility crate to handle the TARGET environment variable passed into build.rs scripts.

Unlike rust’s #[cfg(target…)] attributes, build.rs-scripts do not expose a convenient way to detect the system the code will be built for in a way which would properly support cross-compilation.

This crate exposes target_arch, target_vendor, target_os and target_abi very much in the same manner as the corresponding cfg attributes in Rust do, thus allowing build.rs script to adjust the output depending on the target the crate is being built for..

Custom target json files are also supported.

Using target_build_utils

This crate is only useful if you’re using a build script (build.rs). Add dependency to this crate to your Cargo.toml via:

[package]
# ...
build = "build.rs"

[build-dependencies]
target_build_utils = "0.1"

Then write your build.rs like this:

extern crate target_build_utils;
use target_build_utils::TargetInfo;

fn main() {
    let target = TargetInfo::new().expect("could not get target info");
    if target.target_os() == "windows" {
        // conditional stuff for windows
    }
}

Now, when running cargo build, your build.rs should be aware of the properties of the target system when your crate is being cross-compiled.

License

llvm_build_utils is distributed under ISC (MIT-like) or Apache (version 2.0) license at your choice.

Dependencies

~1.5MB
~32K SLoC