Added RTLD_LOCAL to the dynamic linker flags

This commit is contained in:
Ryzerth 2021-10-09 18:34:20 +02:00
parent 011e7ca409
commit 33b9b53328

View File

@ -27,7 +27,7 @@ ModuleManager::Module_t ModuleManager::loadModule(std::string path) {
mod.deleteInstance = (void(*)(Instance*))GetProcAddress(mod.handle, "_DELETE_INSTANCE_");
mod.end = (void(*)())GetProcAddress(mod.handle, "_END_");
#else
mod.handle = dlopen(path.c_str(), RTLD_LAZY);
mod.handle = dlopen(path.c_str(), RTLD_LAZY RTLD_LOCAL);
if (mod.handle == NULL) {
spdlog::error("Couldn't load {0}.", path);
mod.handle = NULL;