问题描述
- linux动态库与静态库之间的调用问题
-
linux程序编译通过,运行时出错symbol lookup error: /usr/lib/libE.so: undefined symbol: test_D1静态库libD.a中: 提供函数接口test_D(),test_D1(),test_D2()
动态库libE.so中:提供函数接口test_E()
int test_E()
{
test_D();
return 0;
}
应用程序make时,链接了动态库libE.so,将静态库libD.a编译进去了,
将应用程序和动态库libE.so下到开发板时程序运行正常。现在修改动态库libE.so源码,头文件不变,将test_E()改为
int test_E()
{
test_D();
test_D1();
return 0;
}
原来的应用程序不变,只将libE.so更新到开发板
为什么会出现上面的错误,该如何解决??
求高手帮助!!!!!!!!!!!!
急!急!急!
解决方案
test_D1()函数应该编译成test_D1.o用ar命令加入到libD.o中。就可以了、
时间: 2024-12-22 02:56:27