我现在有点困惑。昨天我有未定义的符号,即使我将 -rdynamic 与 g++ 一起使用。但现在我没有任何错误,这更令人不安。
为了解释一下我的情况,我想做一些像共享对象这样的插件。我还没有决定哪种方法最好。
A)我的共享对象都有一个名为 register 的函数,该函数将使用参数调用。这将是一个插件管理器。
B)我的共享对象将定义一个类,并将在加载时创建该类的实例。在该类的构造函数中,它将尝试从应用程序中获取静态单例并自动注册自己。
据我所知,到目前为止,我的第一次尝试并不是那么好。
主文件
#include "main.hpp"
#include <iostream>
#include <cstdio>
#include <dlfcn.h>
int S::shared = 0;
int main(int argc, char** argv){
std::cout << "In main -> " << S::shared << "\n";
void* triangle = dlopen("./libtwo.so", RTLD_LAZY);
if(triangle == NULL){
std::cout << "Error while loading so file\n" << dlerror() << "\n";
}
std::cout << "In main -> " << S::shared << "\n" << triangle;
return 0;
}
主文件
class S {
public:
static int shared;
S(){
S::shared = 0;
};
};
二.cpp
#include "main.hpp"
#include <iostream>
class MyObject {
public:
MyObject(){
std::cout << "In two -> " << S::shared << "\n";
}
};
MyObject t();
在该示例中, S::shared 是我要共享的静态对象。对于这个简单的测试,我只使用一个 int 但在未来它将是一个类的实例。
我对案例 A) 的唯一尝试是段错误......我真的不知道我错过了什么。
//到目前为止的结果(今天)
piplup@vika:~/dev/WebDesign/Scproci$ scons -Q
g++ -o two.os -c -fPIC two.cpp
g++ -o libtwo.so -shared two.os
g++ -o main.o -c -fPIC main.cpp
g++ -o main -Wl,--export-dynamic main.o -ldl
piplup@vika:~/dev/WebDesign/Scproci$ ./main
In main -> 0
In main -> 0