[macOS] c/c++ vim

컴파일러가 설치 되있어야 한다. (보통 xcode를 설치하면 컴파이러도 같이 설치됨)

 

1. vim으로 c

vi test.c #vi편집기로 test란 이름의 .c파일을 생성
gcc test -o test.c #gcc컴파일러로 컴파일, -o 옵션으로 test.c의 실행 파일 이름 test로 지정
clang test.c -o test #clang컴파일러로 컴파일, -o 옵션으로 test.c의 실행 파일 이름 test로 지정
./test #test실행 파일 실행

 

2. vim으로 c++

vi test.cpp
g++ test -o test.cpp
clang++ test.cpp -o test
./test

 

 

코딩하게 편하게 vim 설정 : https://github.com/amix/vimrc

 

GitHub - amix/vimrc: The ultimate Vim configuration (vimrc)

The ultimate Vim configuration (vimrc). Contribute to amix/vimrc development by creating an account on GitHub.

github.com

 

'C++' 카테고리의 다른 글

[macOS] c/c++ vscode  (0) 2024.07.04
[macOS] c/c++ Xcode 사용  (0) 2024.07.04