Linux下
gcc -g -Wall a1.c -o a1.out
-Wall 显示警告
GCC 编译Dll
gcc --share print.c -o print.dll
调用dll库生成exe文件
gcc test.c print.dll -o test
MAkeFile
CC= gcc CFLAGS= -Wall hello: hello.o hello_fn.o clean: rm -f hello hello.o hello_fn.o
扩展阅读 http://blog.csdn.net/denglei265/archive/2009/02/14/3889470.aspx