repo.or.cz
/
binutils
/
dougsmingw.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix PE-COFF archiving long name tables
[binutils/dougsmingw.git]
/
ld
/
testsuite
/
ld-m68k
/
plt1.ld
blob
718e2adfb4295da750d194d80c37e64fe5c8fb59
1
SECTIONS
2
{
3
. = 0x20000;
4
.interp : { *(.interp) }
5
.hash : { *(.hash) }
6
.dynsym : { *(.dynsym) }
7
.dynstr : { *(.dynstr) }
8
9
. = ALIGN (0x400);
10
.rela.plt : { *(.rela.plt) }
11
12
. = ALIGN (0x400);
13
.plt : { *(.plt) }
14
15
. = ALIGN (0x400);
16
.text : { *(.text) }
17
18
. = ALIGN (0x10000);
19
.dynamic : { *(.dynamic) }
20
21
. = ALIGN (0x400);
22
.got : { *(.got.plt) *(.got) }
23
}