我正在尝试从共享库的函数中调用“核心”函数,但我得到:
./a.out: symbol lookup error: ./libtest.so: undefined symbol: testf
我正在使用的代码非常基础,因为我刚刚开始编写共享库,它仅用于测试目的: main.h
extern void testf();
的main.c
#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
有可能实现这一目标吗?试图找到答案,但不知道如何形成正确的问题,以便我可以更好地搜索它。
谢谢!
答案 0 :(得分:0)
这里你试图从库中调用可执行文件的函数。我认为你实际上需要反过来。
答案 1 :(得分:0)
抱歉,设法找到答案: 我用错误的参数编译主程序,应该使用:
gcc main.c -ldl -rdynamic