gpt4 book ai didi

rust - 构建脚本可以带参数吗?

转载 作者:行者123 更新时间:2023-11-29 08:20:24 30 4
gpt4 key购买 nike

我正在浏览 the build script documentation并且想知道我是否可以从命令行将任何参数传递给 build.rs 中的脚本。

fn main() {
let args: Vec<String> = env::args().collect();
let var = &args[1];
}

这样的东西在构建脚本中会起作用吗?我如何从命令行指定参数?

最佳答案

没有。

文档建议使用环境变量将数据传递给构建脚本。

没有文档表明它可以完成并且the test suite does not test for it .它只测试 environment variables .

我尝试了@Stephan 从 Passing program arguments through Cargo 中建议的方法,但是 cargo build 不遵循与 cargo run 相同的行为:

$ cargo build -- uoeuoe
error: Found argument 'uoeuoe' which wasn't expected, or isn't valid in this context

USAGE:
cargo.exe build [OPTIONS]

For more information try --help

关于rust - 构建脚本可以带参数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52654356/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com