컴퓨터/*nix

공유 라이브러리

Hikasiru 2006. 4. 25. 22:31

생성

#gcc -shared -fPIC -o libtest.so test.o

-fPIC option = Tells the compiler that I'm going to be using test.o as part of a shared object

컴파일

#gcc -o app app.o -L. -ltest