You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rather than loading each modification as a .so individually modloader should be the only thing getting LD_PRELOADED and it should chainload the mods.
A naive approach of dl_open() on each of the .so-s does not work because the symbols don't become visible to the necessary context. Attempts at setting the context properly have failed because our related headers don't have the necessary GNU extensions.
This would allow for better error management and probably many other benefits.
The text was updated successfully, but these errors were encountered:
Rather than loading each modification as a .so individually modloader should be the only thing getting LD_PRELOADED and it should chainload the mods.
A naive approach of dl_open() on each of the .so-s does not work because the symbols don't become visible to the necessary context. Attempts at setting the context properly have failed because our related headers don't have the necessary GNU extensions.
This would allow for better error management and probably many other benefits.
The text was updated successfully, but these errors were encountered: