gpt4 book ai didi

c++ - 我无法让我的程序工作我不断收到 undefined symbol : c

转载 作者:行者123 更新时间:2023-12-02 10:23:08 24 4
gpt4 key购买 nike

我正在尝试加载所有库,并从每个库中调用一个函数,以创建一个文件并通过指针屏蔽 fiddle ,并与它们一起在主程序中写入内容,然后关闭它们。

这是我的主要功能:

#include <dlfcn.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/types.h>
#include <stdlib.h>
#include <stdio.h>
#include <iostream>
using namespace std;

char LIBA[]="./LIBA.SO";
char LIBB[]="./LIBB.SO";
char LIBC[]="./LIBC.SO";
typedef void (*FUNC_T)(int*);
FUNC_T FUNC[2];

void ifnull(void *detect)
{
if (detect == NULL)
{
cout << "ERROR:" << dlerror() << endl;
exit(-1);
}
}

void ifnull2(FUNC_T detect)
{
if (detect == NULL)
{
cout << "ERROR:" << dlerror() << endl;
exit(-1);
}
}

int main()
{
void *handle[2];
int FD[2];
handle[0]=dlopen(LIBA, RTLD_LAZY); ifnull(handle[0]);
handle[1]=dlopen(LIBB, RTLD_NOW); ifnull(handle[1]);
handle[2]=dlopen(LIBC, RTLD_NOW); ifnull(handle[2]);
FUNC[0]=(void(*)(int*))dlsym(handle[0], "c"); ifnull2(FUNC[0]);
FUNC[1]=(void(*)(int*))dlsym(handle[1], "c"); ifnull2(FUNC[1]);
FUNC[2]=(void(*)(int*))dlsym(handle[2], "c"); ifnull2(FUNC[2]);

FUNC[0](&FD[0]); FUNC[1](&FD[1]); FUNC[2](&FD[2]);

return 0;
}

这是在库中:

#include <stdio.h>

void c(int *fd)
{
printf("ok A\n");
}

我不断得到
ERROR:./LIBA.SO: undefined symbol: c

请帮忙

最佳答案

C++ mungs 函数名称,因为它可以有多个同名的函数。

因此对于

#include <stdio.h>

void c(int *fd)
{
printf("ok A\n");
}

我们得到
$ g++ -Wall -Wextra -pedantic -c -fPIC liba.cpp -o liba.so
liba.cpp: In function ‘void c(int*)’:
liba.cpp:3:13: warning: unused parameter ‘fd’ [-Wunused-parameter]
void c(int *fd)
^~

$ nm liba.so
U _GLOBAL_OFFSET_TABLE_
U puts
0000000000000000 T _Z1cPi

如您所见,该函数以 _Z1cPi 的形式存在。 .我不确定这是否可以安全使用。但是,您可以使用 extern "C" .

为了
#include <stdio.h>

extern "C" void c(int *fd)
{
printf("ok A\n");
}

我们得到
$ g++ -Wall -Wextra -pedantic -c -fPIC liba.cpp -o liba.so
liba.cpp: In function ‘void c(int*)’:
liba.cpp:3:24: warning: unused parameter ‘fd’ [-Wunused-parameter]
extern "C" void c(int *fd)
^~

$ nm liba.so
0000000000000000 T c
U _GLOBAL_OFFSET_TABLE_
U puts

关于c++ - 我无法让我的程序工作我不断收到 undefined symbol : c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59190869/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com