diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-06-22 12:45:30 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-06-26 23:00:13 +0200 |
commit | d61eb905ae3fa161d50821d01ee47915713e89c2 (patch) | |
tree | 11b466a9b4978779586408fcb59615750e6b1eed | |
parent | 0e0443e6e13414bf436912c24c7c0ecdbb3f82f3 (diff) |
api: use RTLD_NOW
-rw-r--r-- | api/plugin-support.hpp | 2 |
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; |