mirror of
https://github.com/ziglang/zig.git
synced 2025-12-30 01:53:16 +00:00
13 lines
166 B
Plaintext
13 lines
166 B
Plaintext
PHDRS
|
|
{
|
|
ph_write PT_LOAD FLAGS(2);
|
|
ph_exec PT_LOAD FLAGS(1);
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.bar : { *(.bar) } : ph_exec
|
|
.foo : { *(.foo) }
|
|
.text : { *(.text) } : ph_write
|
|
}
|