我想你可以具体说明。这是启用它的 RFC: https://github.com/rust-lang/rfcs/blob/master/text/1721-crt-static.md
这还支持 +crt-static 和 -crt-static 功能来控制静态 C 运行时链接。
创建一个名为
.cargo/config.toml
的文件,在其中您可以指定 rustflags
https://doc.rust-lang.org/cargo/reference/config.html
内部
config.toml
...
[build]
rustflags = ["-C", "target-feature=+crt-static"]
...
虽然我还没有尝试过,但我想它应该有用。