linux下C语言用共享库

网上搜了一下感觉简单,上代码

//test_a.c
#include "so_test.h"
 
void test_a()
{
	printf("this is in test_a...\n");
}
 //test_so.h
#include 
void test_a();
//test.c
#include "so_test.h"
 
int main()
{
	test_a();	
	return 0;
}

然后编译

gcc test_a.c -fPIC -shared -o libtest.so
gcc test.c -L. -ltest -o test

运行发现报错找不到库,解决方案2个,一个是把库当前路径放在运行的启动命令

LD_LIBRARY_PATH=/home/qzc/workspace/rusthello/hellc:$LD_LIBRARY_PATH ./test

还有一种是把库放在常用自定义路径里

#vim ~/.profile
export LD_LIBRARY_PATH=/home/qzc/program/ipv6:$LD_LIBRARY_PATH
# source ~/.profile

这样启动时就可以直接   ./test

当然如果有权限,把库放在系统路径 /lib 或 /usr/lib 那就更省力

如果用的c++来做,会发现报错段

用nm libtest.so看文件会发现函数名被优化成其他名字,加了前缀,为了保持c语言风格不被改变,可以在函数前增加extern “C” 

参考 linux下C语言编程动态库so的编写及调用 - 代码先锋网

Linux C++简单生成与调用so库 - 灰信网(软件开发博客聚合)

error while loading shared libraries: libtest.so: cannot open shared object file: No such file or di_n大橘为重n的博客-CSDN博客

你可能感兴趣的:(c,linux,linux,c语言,服务器)