GnuCompilerCollection

GNU Cee / C++ Compiler

http://gcc.gnu.org

각종자료

일반적인 사용법

$ gcc -g -Wall -ohello hello.c

옵션들

라이브러리만드는법

 $ gcc -c myfunc.c
 $ ar r libmylib.a myfunc.o
 $ ar s libmylib.a
 $ ar t libmylib.a
 myfunc.o
 $ gcc -o say_linux hello.c -lmylib

64bit용으로 컴파일하기 옵션

CC=gcc CFLAGS="-O3 -m64 -fno-omit-frame-pointer" CXX=gcc 
CXXFLAGS="-O3 -m64 -fno-omit-frame-pointer -felide-constructors -fno-exceptions -fno-rtti"

Debugging은 주로 GDB 에서 한다.

64bit 컴파일 오류시 대처

  1. CFLAGS에 -fPIC를 넣어줘야 하는 경우가 있다. 참고 HOWTO fix -fPIC errors

  2. 32bit 용 라이브러리들이 PATH상 먼저 있는지 확인


SeeAlso GCC, CeeCompiler


CategoryProgram

GCC (last edited 2013-02-14 13:45:41 by 61)