24 lines
381 B
Plaintext
24 lines
381 B
Plaintext
SECTIONS
|
|
{
|
|
. = 0x20000;
|
|
.interp : { *(.interp) }
|
|
.hash : { *(.hash) }
|
|
.dynsym : { *(.dynsym) }
|
|
.dynstr : { *(.dynstr) }
|
|
|
|
. = ALIGN (0x400);
|
|
.rela.plt : { *(.rela.plt) }
|
|
|
|
. = ALIGN (0x400);
|
|
.plt : { *(.plt) }
|
|
|
|
. = ALIGN (0x400);
|
|
.text : { *(.text) }
|
|
|
|
. = ALIGN (0x10000);
|
|
.dynamic : { *(.dynamic) }
|
|
|
|
. = ALIGN (0x400);
|
|
.got : { *(.got.plt) *(.got) }
|
|
}
|