본문 바로가기
rust

[rust] error: linker `link.exe` not found

by Monett 2024. 5. 12.
반응형

rust를 설치하고

cargo run

을 실행했는데 아래와 같은 문구가 뜬다.

 

>cargo run
   Compiling hello-rust v0.1.0
error: linker `link.exe` not found
  |
  = note: program not found

note: the msvc targets depend on the msvc linker but `link.exe` was not found

note: please ensure that Visual Studio 2017 or later, or Build Tools for Visual Studio were installed with the Visual C++ option.

note: VS Code is a different product, and is not sufficient.

error: could not compile `hello-rust` (bin "hello-rust") due to 1 previous error

 

Build Tools for Visual Studio 가 설치되지 않았다는 것..

 

그런데 나는 예전에 설치해둔 버전이 있었다.

그럴땐 여기 수정 버튼을 누르고 

C++를 사용한 데스크톱 개발 -> 우측에 세 개를 체크 후 우측 하단의 수정 버튼을 누르면 된다.

 

 

성공!

반응형