4个版本
0.1.3 | 2024年5月14日 |
---|---|
0.1.2 | 2023年12月21日 |
0.1.1 | 2023年12月21日 |
0.1.0 | 2023年12月21日 |
#308 在 构建工具
4,700 每月下载量
在 8 个crate中使用 (直接使用5个)
7KB
55 行
Rustc目标三重符
访问Cargo提供的构建脚本中的$TARGET和$HOST rustc目标三重符。
示例
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",
);
}
许可证
根据您的选择,在Apache License, Version 2.0或MIT许可证下许可。除非您明确说明,否则根据Apache-2.0许可证定义的,您有意提交以包含在此crate中的任何贡献,都将按照上述方式双重许可,不附加任何额外条款或条件。