编程语言
首页 > 编程语言> > C++ 动态加载

C++ 动态加载

作者:互联网

  动态库打开正常,但是查找函数时失败。

handle = dlopen("/home/zhq/c++/loadmodual/libhello.so",RTLD_NOW|RTLD_LOCAL);
if (handle == NULL) {
cout<<"load error."<<endl;
return ;
}
dlerror();
onload = (void (*)()) dlsym(handle,"hello_world");

运行报错:

./libhello.so: undefined symbol: hello_world
load error1.

    是由于C++编译时生成的函数名与C不一致,导致dlsym不能识别到目标函数。

解决办法:

  动态库函数声明时,加上extern "C"

#ifdef __cplusplus
extern "C"{
#endif

void hello_world();

#ifdef __cplusplus
}
#endif

标签:__,handle,dlsym,C++,ifdef,动态,hello,RTLD,加载
来源: https://www.cnblogs.com/zzzzhq/p/15213866.html