repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* elf32-spu.c (build_stub): Fix malloc under-allocation.
[binutils.git]
/
ld
/
testsuite
/
ld-arm
/
cortex-a8-fix-plt.ld
blob
3103f6712890a0b5d4af89647b5da3a33dcff27f
1
OUTPUT_ARCH(arm)
2
ENTRY(_start)
3
SECTIONS
4
{
5
. = 0x07000;
6
.hash : { *(.hash) }
7
.gnu.hash : { *(.gnu.hash) }
8
.dynsym : { *(.dynsym) }
9
.dynstr : { *(.dynstr) }
10
.rel.dyn : { *(.rel.dyn) }
11
.rel.plt : { *(.rel.plt) }
12
. = 0x08000;
13
.plt : { *(.plt) }
14
. = 0x08ff0;
15
.text : { *(.text) }
16
. = 0x10000;
17
.dynamic : { *(.dynamic) }
18
}