Re: [Rpm-maint] [rpm-software-management/rpm] Load plugin library symbols first (#1664)

2021-04-28 Thread benierc
@ffesti, i see what you mean, i will change it, thanks -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

[Rpm-maint] [rpm-software-management/rpm] Load plugin library symbols first (#1664)

2021-04-28 Thread benierc
dlopen load plugins LIBRARY with RTLD_LAZY flag it means the symbols are loaded when references are executed so it causes issue when some references are the same than in system append RTLD_BINDDEEP allows to first load symbols from the plugin library You can view, comment on, or merge this pull

[Rpm-maint] [rpm-software-management/rpm] Plugin library symbols are not loaded at first (#1663)

2021-04-28 Thread benierc
dlopen load plugins LIBRARY with RTLD_LAZY flag it means the symbols are loaded when references are executed so it causes issue when some references are the same than in system