Introduction
MAC의 콘솔 창에서 gcc를 이용하여 C나 C++ 코드의 컴파일 하는 방법을 알아보겠습니다.
1. Terminal 실행(Ctrl + space -> Terminal 입력)
2. Terminal에 아래 명령어를 이용하여 command line tools 설치
xcode-select --install
3. 아래 명령어를 통해 설치가 잘 되었는지 확인
gcc -v
4. 컴파일 해보기
아래 코드로 테스트 해보겠습니다.
brute_force_search.cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #include <cstdio> #include <algorithm> using namespace std; int main() { int N, arr[1000]; scanf("%d", &N); for (int i = 0; i < N; i++) scanf("%d", arr+i); int result = 0; for (int i = 0; i < N; i++) for (int j = 0; j < N; j++) if (i != j) result = max(result, arr[i] + arr[j]); printf("\n%d\n", result); } | cs |
실행파일 만들기:
gcc 소스코드이름 -o 원하는실행파일이름
실행:
./실행파일이름
References
https://thdev.net/13
제 글이 도움이 되셨다면 간단하게 '공감', '댓글' 부탁드립니다!
'Tip' 카테고리의 다른 글
맥북에 aws cli 설치하기 (0) | 2019.03.06 |
---|---|
Mac에서 Virtualenv + tensorflow + Keras 설치하기 (0) | 2019.01.03 |
웹호스팅 웹하드 용량이 이상하게 많이 차지할 때 해결방법 (0) | 2018.12.11 |
gitignore에 추가해도 파일이 무시되지 않는 문제 (0) | 2018.12.10 |
heroku toolbelt를 이용하여 웹사이트 deploy하기 (0) | 2018.12.08 |
댓글