我正在尝试从共享库的函数中调用“核心”函数,但我得到:
./a.out: symbol lookup error: ./libtest.so: undefined symbol: testf
我使用的代码非常基本,因为我刚刚开始编写共享库,它只是为了测试目的:main.h
extern void testf();
主程序
#include <stdio.h>
#include <dlfcn.h>
extern void testf()
{
printf("bla bla\n");
}
int main () {
void *handle = NULL;
void (*testlib)(void) = NULL;
handle = dlopen("./libtest.so" ,RTLD_LAZY);
testlib = dlsym(handle, "testfunc");
if ( testlib == NULL )
{
printf("Error: %s \n", dlerror());
}
else
{
testlib();
}
}
libtest.c
#include <stdio.h>
#include "main.h"
void testfunc() {
printf("Test plugin\n");
testf();
}
我编译它的命令是:
gcc -fPIC -g -c -Wall libtest.c
gcc -shared -Wl,-soname,libtest.so.1 -o libtest.so libtest.o -lc
gcc main.c -ldl
有可能实现这一目标吗?试图找到答案,但真的不知道如何正确地形成问题,所以我可以更好地搜索它。
谢谢!