gcc 动态编译(共享库)
动态编译的可执行文件需要附带一个的动态链接库,在执行时,需要调用其对应动态链接库中的命令。
优点:体积小,编译快
缺点:依赖性高
This is The C Code
[root@74–82–173–217 shared]# cat add.c
int add (int x, int y) {
return x + y;
}
Parsed in 0.008 seconds at 10.64 KB/s
add.c 求和函数
This is The C Code
[root@74–82–173–217 shared]# cat print.c
#include <stdio.h>
void print (int x) {
printf ("%dn",x);
}
Parsed in 0.008 seconds at 13.19 KB/s
print 打印函数
…………