我在Rust页面上查看了Rust书籍/教程http://doc.rust-lang.org/book/hello-cargo.html,并在执行Cargo部分时遇到以下错误。命令是cargo build --verbose
。由于构建过程失败,我使用了详细标记。看起来Cargo正在尝试构建一个名为“verbose”的文件。我确实使用了详细的标志;这几乎就像发送到rustc的参数缺少一个--
前缀?
Process didn't exit successfully: `rustc -v verbose` (status=101)
--- stderr
error: couldn't read verbose: IoError { kind: FileNotFound, desc: "couldn\'t ope
n path as file", detail: Some("file not found (OS Error 2: The system cannot fin
d the file specified.\r\n); path=verbose; mode=open; access=read") }
Cargo.toml文件包含以下文字:
[package]
name = "hello_world" version = "0.0.1"
authors = [ "Your name <you@example.com>" ]
[[bin]]
name = "hello_world"
我运行的计算机是Windows 7 64位,每天使用64位夜间安装,从2天前的2015年1月18日开始。
答案 0 :(得分:1)
我刚刚关注了您链接的tutorial,我没有看到任何使用详细标记的引用。我假设您查看货物的帮助或以其他方式了解它。
然而,当我按照前两步(“Hello,world!”和“Hello,Cargo!”)时,我能够运行cargo build --verbose
。
我认为您需要提供有关特定设置的更多信息。