当-C target-cpu=native
标志传递给rustc
时,我写的程序运行得更快。我希望在编译时为用户提供一种简单,独立于平台的方式来启用此功能,因此我在Cargo.toml中添加了货物功能cpu_native = []
并在我的项目中创建了此货物配置:
[target.'cfg(cpu_native)']
rustflags = ["-C", "target-cpu=native"]
但是,这对我的程序没有影响,将--features cpu_native
传递给Cargo甚至不会触发重新编译。更改为以下货物配置 强制重新编译更快的指令:
[build]
rustflags = ["-C", "target-cpu=native"]
但是,这将使用target-cpu=native
编译默认的货物功能,这不是我想要的。从货物书中,我想要的似乎是可能的,但我看不出我做错了什么。
答案 0 :(得分:1)
我认为这不受支持(但是?)。我强化了Cargo以打印出在解析时检查的配置标志:
[
Name("debug_assertions"),
Name("proc_macro"),
KeyPair("target_arch", "x86_64"),
KeyPair("target_endian", "little"),
KeyPair("target_env", ""),
KeyPair("target_family", "unix"),
KeyPair("target_os", "macos"),
KeyPair("target_pointer_width", "64"),
Name("unix"),
]
[target.'cfg(cpu_native)']
这是货物功能的错误语法;它通常是cfg(feature = "cpu_native")
。