提交 b5a4bd22 编写于 作者: M Maksim Shabunin

plugins: use RTLD_NOW instead of RTLD_LAZY

上级 0aca3fb5
......@@ -80,7 +80,7 @@ LibHandle_t libraryLoad_(const FileSystemPath_t& filename)
return LoadLibraryW(filename.c_str());
#endif
#elif defined(__linux__) || defined(__APPLE__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__HAIKU__) || defined(__GLIBC__)
return dlopen(filename.c_str(), RTLD_LAZY);
return dlopen(filename.c_str(), RTLD_NOW);
#endif
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册