我尝试在c ++中动态加载库。我按照this教程。 我的文件夹结构如下:
├── main.cpp
├── testLib.cpp
├── testLib.h
├── testLib.so
└── testVir.h
的main.cpp
#include<iostream>
#include<dlfcn.h>
#include<stdio.h>
#include "testVir.h"
using namespace std;
int main()
{
void *handle;
handle = dlopen("./testLib.so", RTLD_NOW);
if (!handle)
{
printf("The error is %s", dlerror());
}
typedef TestVir* create_t();
typedef void destroy_t(TestVir*);
create_t* creat=(create_t*)dlsym(handle,"create");
destroy_t* destroy=(destroy_t*)dlsym(handle,"destroy");
if (!creat)
{
cout<<"The error is %s"<<dlerror();
}
if (!destroy)
{
cout<<"The error is %s"<<dlerror();
}
TestVir* tst = creat();
tst->init();
destroy(tst);
return 0 ;
}
testLib.cpp
#include <iostream>
#include "testVir.h"
#include "testLib.h"
using namespace std;
void TestLib::init()
{
cout<<"TestLib::init: Hello World!! "<<endl ;
}
//Define functions with C symbols (create/destroy TestLib instance).
extern "C" TestLib* create()
{
return new TestLib;
}
extern "C" void destroy(TestLib* Tl)
{
delete Tl ;
}
testLib.h
#ifndef TESTLIB_H
#define TESTLIB_H
class TestLib
{
public:
void init();
};
#endif
testVir.h
#ifndef TESTVIR_H
#define TESTVIR_H
class TestVir
{
public:
virtual void init()=0;
};
#endif
我使用此命令获取testLib.so
g++ -shared -fPIC testLib.cpp -o testLib.so
,
这工作正常,但当我尝试编译我的主要
g++ -ldl main.cpp -o test
我收到了这个错误:
/tmp/ccFoBr2X.o: In function `main':
main.cpp:(.text+0x14): undefined reference to `dlopen'
main.cpp:(.text+0x24): undefined reference to `dlerror'
main.cpp:(.text+0x47): undefined reference to `dlsym'
main.cpp:(.text+0x5c): undefined reference to `dlsym'
main.cpp:(.text+0x6c): undefined reference to `dlerror'
main.cpp:(.text+0x95): undefined reference to `dlerror'
collect2: error: ld returned 1 exit status
G ++版本(来自g++ --version
):
g++ (Ubuntu 4.8.4-2ubuntu1~14.04.1) 4.8.4
我不知道发生了什么,我需要一些资源来学习它的工作原理。
编辑1
我通过使用此命令编译我的main来解决了这个问题。
g++ main.cpp -ldl -o test
。在此answer中找到此修复程序。
但是现在当我尝试运行./test
时,我得到Segmentation fault
。似乎
在此行tst->init();
,但指针看起来有效。
编辑2
在this教程之后,我得到了相同的错误Segmentation fault
。
如果你有很好的教程或文档,那确实会有所帮助。
答案 0 :(得分:3)
这与dlopen
部分无关。您的class TestLib
遗漏了TestVir
的继承:
class TestLib : public TestVir
您还应该将create
/ destroy
个签名修改为相同的类型。由于您要隐藏TestLib
课程,因此您应该返回TestVir*
。
extern "C" TestVir* create()
{
return new TestLib();
}
extern "C" void destroy(TestVir* Tl)
{
delete Tl ;
}
还要将功能类型放入标题中,否则您将在稍后拍摄自己的脚。为了实现这一目标,您还必须have virtual destructor in the base class.
class TestVir
{
public:
virtual void init()=0;
virtual ~TestVir() = default; // note: C++11
};
顺便说一句:您的错误处理缺少刷新,如果发生错误,您不应该继续。