본문 바로가기
linux/raspberry 4B

라즈베리파이_우분투 기반 visual studio code c언어 컴파일 세팅

by bestchoco 2022. 1. 17.

visual studio code 설치 페이지 (arm32 / 64 비트), 작성한 글은 ubuntu 21.10, arm64 기준으로 작성.

https://code.visualstudio.com/#alt-downloads

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

1. 설치가 끝나고 나면 [파일 - 작업 영역에 폴더 추가] 클릭, 코딩한 파일을 저장할 폴더를 정한다.

 

1. [파일 - 새파일] 클릭

 

2. c언어 문법에 기반하여 "hello"를 출력하는 예제 코드 타이핑.

#include <stdio.h>

int main() {

printf("hello\n");

}

 

3. 저장할 때 확장자는 .c로 저장.

 

4. 그 다음 [실행 - 디버깅 시작] 누르기. [사진 1]

[사진 1]

5. C++ (GDB/LLDB) 선택. [사진 2]

[사진 2]

6. aarch64-linux-gnu-gcc - 활성 파일 빌드 및 디버그 클릭. (두 번째 항목 클릭, 네 번째 항목 클릭해도 상관 없음.) [사진 3]

[사진 3]

7. launch.json 파일이 생성되었고 터미널 창에서 정상적으로 "hello"가 출력된 것을 확인 가능. [사진 4]

[사진 4]

8. launch.json은 닫는다. (.vscode 폴더와 ~~~.c와 같은 이름을 가진 ~~~은 삭제하지 말기.)

 

9. 이제 코딩을 시작하면 된다. (터미널 창에 결과물 출력은 "실행 - 디버깅 없이 시작 또는 디버깅 시작")