自定义条件
有部分条件如 target_os
在使用 rustc
时会隐式地提供,但是自定义条件必须使用 --cfg
标记来传给 rustc
。
#[cfg(some_condition)]
fn conditional_function() {
println!("condition met!")
}
fn main() {
conditional_function();
}
不使用自定义的 cfg
标记:
$ rustc custom.rs && ./custom
No such file or directory (os error 2)
使用自定义的 cfg
标记:
$ rustc --cfg some_condition custom.rs && ./custom
condition met!
当前内容版权归 rust-lang-cn 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 rust-lang-cn .