0

我正在尝试从共享库的函数中调用“核心”函数,但我得到:

./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

有可能实现这一目标吗?试图找到答案,但真的不知道如何正确地形成问题,所以我可以更好地搜索它。

谢谢!

4

2 回答 2

0

在这里,您试图从库中调用可执行文件的函数。我认为你实际上需要反过来。

于 2013-05-10T14:58:32.410 回答
0

对不起,设法找到答案:我正在用错误的参数编译主程序,应该使用:

gcc main.c -ldl -rdynamic
于 2013-05-10T15:14:32.893 回答