plugin1.cpp:dlclose() no llama al destructor de objetos globales
#include <iostream>
static class TestStatic {
public:
TestStatic() {
std::cout << "TestStatic create" << std::endl;
}
~TestStatic() {
std::cout << "TestStatic destroy" << std::endl;
}
} test_static;
host.cpp
#include <dlfcn.h>
#include <iostream>
int main(int argc,char *argv[]) {
void* handle = dlopen("./plugin1.so",RTLD_NOW | RTLD_LOCAL);
dlclose(handle);
return 0;
}
generar y ejecutar:
>g++ -c plugin1.cpp -o plugin1.o -fPIC
>g++ -shared plugin.o -o plugin1.so
>g++ host.cpp -o host -ldl
>./host
>TestStatic create
>Segmentation fault
qué TestStatic :: ~ TestStatic llamado a 'exit()' pero no a 'dlclose()'?
Buena pregunta: +1. – Chubsdad
¿Esto es útil? http://forum.soft32.com/linux2/dlclose-causing-segmentation-fault-exit-main-ftopict10002.html – Chubsdad
opción -fno-use-cxa-atexit para la compilación plugin.cpp resuelve el problema – AndryBlack