C와 C++ 소스 파일들을 전처리, 컴파일하여 모으고 이어줍니다. 더 많은 정보: https://gcc.gnu.org.
gcc {{소스/파일1/경로.c 소스/파일2/경로.c ...}} {{[-o|--output]}} {{출력/실행파일/경로}}
gcc {{소스/파일/경로.c}} -Wall -Og {{[-o|--output]}} {{출력/실행파일/경로}}
gcc {{소스/파일/경로.c}} {{[-o|--output]}} {{출력/실행파일/경로}}} -I{{헤더/경로}} -L{{라이브러리/경로}} -l{{라이브러리명}}
gcc {{[-S|--assemble]}} {{소스/파일/경로.c}}
gcc {{[-c|--compile]}} {{소스/파일/경로.c}}