4 releases
0.1.3 | May 14, 2024 |
---|---|
0.1.2 | Dec 21, 2023 |
0.1.1 | Dec 21, 2023 |
0.1.0 | Dec 21, 2023 |
#473 in Build Utils
3,934 downloads per month
Used in 8 crates
(5 directly)
7KB
55 lines
Rustc target triple
Access the $TARGET and $HOST rustc target triples that Cargo supplies to build scripts.
Example
fn main() {
// As a const &str:
assert_eq!(target_triple::TARGET, "x86_64-unknown-linux-gnu");
// As a string literal:
assert_eq!(
concat!("target/", target_triple::target!()),
"target/x86_64-unknown-linux-gnu",
);
}
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.