gcc -shared 生成用于共享库的共享对象文件。
$ gcc -shared [options] [source files] [object files] [-o output file]
myfile.c:
// myfile.c
#include
int main()
{
printf("程序运行!\n");
int i=10;
}
常规构建myfile.c没有消息:
$ gcc myfile.c -o myfile
$
使用 -Wall 构建 myfile.c:
$ gcc -Wall myfile.c -o myfile
myfile.c In function 'main':
myfile.c:6:6: warning: unused variable 'i'
myfile.c:7:1: warning: control reaches end of non-void function
$
我们所有内容来源于rapidtables.com,遗憾于其没有中文版本,因此建立中文版供网民使用,所有内容版权属于rapidtables.