[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
:phdr
modifier. You can use :NONE
to tell the
linker to not put the section in any segment at all.
Here is a simple example:
PHDRS { text PT_LOAD ; } SECTIONS { .text : { *(.text) } :text } |