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
include/elf/
[binutils.git]
/
ld
/
testsuite
/
ld-arm
/
ifunc-static.ld
blob
80cf6a2a052c7883e942984263abce036dfeeee8
1
OUTPUT_ARCH(arm)
2
ENTRY(_start)
3
SECTIONS
4
{
5
. = 0x08000;
6
.rel.dyn : {
7
PROVIDE_HIDDEN (__irel_start = .);
8
*(.rel.iplt)
9
PROVIDE_HIDDEN (__irel_end = .);
10
}
11
. = 0x09000;
12
.iplt : { *(.iplt) }
13
. = 0x0A000;
14
.text : { *(.text) }
15
. = 0x10000;
16
.data : { *(.data) }
17
. = 0x11000;
18
.got : { *(.got.plt) *(.igot.plt) *(.got) *(.igot) }
19
. = 0x12000;
20
.bss : { *(.bss) }
21
}