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
Currently relocations for elf and pe backends are only read from their own relocations directory. This design is not extensible and does not allow for more relocations to be added by external sources without changing the source of cle itself.
Alternatives
No response
Additional context
Allowing other programs to add relocations allows programs to develop custom relocations that might not be suitable for general use, or might prefer not to have to use a modified version of cle.
The text was updated successfully, but these errors were encountered:
One other benefit to this that I neglected to mention is that by loading relocations as python objects rather than files on the filesystem, it would remove special configuration needed in pyinstaller downstream. Loading python code from the filesystem rather through python's standard import system is generally just a bad practice.
Description
Currently relocations for elf and pe backends are only read from their own relocations directory. This design is not extensible and does not allow for more relocations to be added by external sources without changing the source of cle itself.
Alternatives
No response
Additional context
Allowing other programs to add relocations allows programs to develop custom relocations that might not be suitable for general use, or might prefer not to have to use a modified version of cle.
The text was updated successfully, but these errors were encountered: