1. ホーム
  2. compiler-errors

[解決済み] Windows で Rust hello world をコンパイルできない:リンカー link.exe が見つからない

2023-01-13 07:39:40

質問

WindowsにRustをインストールしたのは Rustのインストールページ . インストール後、"hello world"のプログラムを実行してみましたが、以下のエラーが発生しました。

>cargo run

エラー

Compiling helloworld v0.1.0 (C:\Users\DELL\helloworld)

error: linker `link.exe` not found
note: The system cannot find the file specified. (os error 2)
note: the msvc targets depend on the msvc linker but `link.exe` was not found
note: please ensure that VS 2013, VS 2015 or VS 2017 was installed with the Visual C++ option
error: aborting due to previous error
error: Could not compile `helloworld`.

To learn more, run the command again with --verbose.

コード :

fn main() {
    println!("Hello, world!");
}

どのように解決するのですか?

私はダウンロードし、インストールした Visual Studio 2019用ビルドツール . インストール中に、私は C++ツール . 5GB近いデータがダウンロードされました。インストール後にマシンを再起動したところ、コードのコンパイルは正常に行われました。

> cargo run
Compiling helloworld v0.1.0 (C:\Users\DELL\helloworld)
Finished dev [unoptimized + debuginfo] target(s) in 12.05s
  Running `target\debug\helloworld.exe`
Hello, world!