putting-the-you-in-cpu icon indicating copy to clipboard operation
putting-the-you-in-cpu copied to clipboard

Maybe a mistake of Ch.4 A brief Explanation of Linking

Open jnchen opened this issue 1 year ago • 1 comments

image i think it should be PT_DYNAMIC

jnchen avatar Sep 25 '23 09:09 jnchen

hey @jnchen, its not a mistake 😄 , The PT_INTERP is a program header entry in an ELF file that specifies the path to the dynamic linking runtime aka interpreter.

PT_INTERP is correct because it is the standard way to specify the path to the dynamic linking runtime in an ELF file. This(PT_INTERP, interpreter which is responsible for loading and resolving libraries at runtime ) allows ELF executables to be smaller and faster to load at runtime.

also read this too

nermalcat69 avatar Oct 01 '23 13:10 nermalcat69