1

我在http://doc.rust-lang.org/book/hello-cargo.html的 Rust 页面上关注了 Rust 书/教程,并在执行 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 位,使用 2 天前 2015 年 1 月 18 日的 64 位夜间安装。

4

1 回答 1

1

我只是按照您链接的教程进行操作,并且没有看到任何有关使用详细标志的参考。我假设您查看了 Cargo 的帮助或以其他方式了解它。

但是,当我按照前两个步骤(“Hello,world!”和“Hello,Cargo!”)进行操作时,我能够运行cargo build --verbose.

我认为您需要提供有关您的特定设置的更多信息。

于 2015-01-18T15:34:48.423 回答