윈도우 로컬 환경 잡기
1. Rust 설치
- 아래 경로에서 다운로드 받아 설치
https://www.rust-lang.org/ko-KR/install.html
2. C++ 컴파일러 설치
- 아래 경로에서 Visual C++ 빌드 툴 설치
https://support.microsoft.com/ko-kr/help/2977003/the-latest-supported-visual-c-downloads
3. 환경변수 설정
- path 에 아래 경로 추가 (Rust 디폴트로 설치했을 경우)
%사용자경로%\.cargo\bin;
============
컴파일 시도 결과로 아래 에러가 나오면 C++ 컴파일러가 설치되지 않았기 때문이다. 컴파일러를 설치하자.
error: could not exec the linker link.exe: The system cannot find the file specified. (os error 2)
'Rust' 카테고리의 다른 글
컨트롤 플로우(루프) (0) | 2018.02.15 |
---|---|
컨트롤 플로우(if 조건문) (0) | 2018.02.15 |
함수의 동작 (0) | 2018.02.15 |
데이터 타입 (0) | 2018.02.14 |
변수 (0) | 2018.02.14 |