* i386.exp: Add ssemmx2 and sse2 tests.
[deliverable/binutils-gdb.git] / ld / scripttempl / h8500s.sc
CommitLineData
40a633d5
NC
1TORS="
2 ___ctors = . ;
3 *(.ctors)
4 ___ctors_end = . ;
5 ___dtors = . ;
6 *(.dtors)
7 ___dtors_end = . ;"
8
252b5132
RH
9cat <<EOF
10OUTPUT_FORMAT("${OUTPUT_FORMAT}")
11OUTPUT_ARCH(${ARCH})
12
13/* Code and data, both 64k */
14
15SECTIONS
16{
17.text ${RELOCATING+ 0x10000 } :
18 {
40a633d5
NC
19 *(.text)
20 ${RELOCATING+ _etext = . ; }
252b5132
RH
21 }
22
23.rdata ${RELOCATING+ 0x20000 } :
24 {
40a633d5
NC
25 *(.rdata);
26 *(.strings)
27
28 ${CONSTRUCTING+${TORS}}
252b5132
RH
29 }
30
31.data ${RELOCATING+ . } :
32 {
40a633d5
NC
33 *(.data)
34 ${RELOCATING+ _edata = . ; }
252b5132
RH
35 }
36
37.bss ${RELOCATING+ .} :
38 {
40a633d5
NC
39 ${RELOCATING+ __start_bss = . ; }
40 *(.bss)
41 *(COMMON)
42 ${RELOCATING+ _end = . ; }
252b5132
RH
43 }
44
45.stack ${RELOCATING+ 0x2fff0} :
46 {
40a633d5
NC
47 ${RELOCATING+ _stack = . ; }
48 *(.stack)
252b5132
RH
49 }
50
40a633d5
NC
51.stab 0 ${RELOCATING+(NOLOAD)} :
52 {
53 [ .stab ]
54 }
55
56.stabstr 0 ${RELOCATING+(NOLOAD)} :
57 {
58 [ .stabstr ]
59 }
252b5132
RH
60}
61EOF
62
63
64
65
This page took 0.08799 seconds and 4 git commands to generate.