|
|
|
|
|
by archgoon
2154 days ago
|
|
Gcc these days compiles with -pie (Position Independent Executable) by default. This makes the text section position independent and able to be relocated, like a shared library. You are correct that the main TEXT section used to typically not be position independent. |
|