zig/deps/lld/test/ELF/linkerscript/Inputs/implicit-program-header.script

13 lines
166 B
Plaintext
Raw Normal View History

PHDRS
{
ph_write PT_LOAD FLAGS(2);
ph_exec PT_LOAD FLAGS(1);
}
SECTIONS
{
.bar : { *(.bar) } : ph_exec
.foo : { *(.foo) }
.text : { *(.text) } : ph_write
}