Re: [PATCH 1/3] Use ET_DYN instead of ET_REL modules

2025-04-23 Thread Glenn Washburn
On Tue, 8 Apr 2025 15:16:23 + Vladimir Serbinenko wrote: > ET_DYN also known as .so files are actually meant to be loaded dynamically. > Most of the work of linking is done by normal linker and we need to do > only simple relocation by offset. This significantly simplifies our > dynamic load

[PATCH 1/3] Use ET_DYN instead of ET_REL modules

2025-04-08 Thread Vladimir Serbinenko
ET_DYN also known as .so files are actually meant to be loaded dynamically. Most of the work of linking is done by normal linker and we need to do only simple relocation by offset. This significantly simplifies our dynamic loading. Moreover the tools are meant to produce .so files and so it's easie