summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-06-22 12:45:30 +0200
committerStanislaw Halik <sthalik@misaki.pl>2018-06-26 23:00:13 +0200
commitd61eb905ae3fa161d50821d01ee47915713e89c2 (patch)
tree11b466a9b4978779586408fcb59615750e6b1eed
parent0e0443e6e13414bf436912c24c7c0ecdbb3f82f3 (diff)
api: use RTLD_NOW
-rw-r--r--api/plugin-support.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/plugin-support.hpp b/api/plugin-support.hpp
index b3f3396b..5e93e119 100644
--- a/api/plugin-support.hpp
+++ b/api/plugin-support.hpp
@@ -58,7 +58,7 @@ struct dylib final
return;
handle.setFileName(filename_);
- handle.setLoadHints(QLibrary::DeepBindHint | QLibrary::PreventUnloadHint);
+ handle.setLoadHints(QLibrary::DeepBindHint | QLibrary::PreventUnloadHint | QLibrary::ResolveAllSymbolsHint);
if (check(!handle.load()))
return;