This is a test to see if the file is still locked.
[deliverable/binutils-gdb.git] / ld / m88kbcs.sc-sh
CommitLineData
6ecb2b74
PB
1cat <<EOF
2TARGET(m88kbcs)
3OUTPUT_FORMAT(m88kbcs)
4OUTPUT_ARCH(${arch})
5ENTRY(__start)
6${RELOCATING+${LIB_SEARCH_DIRS}}
7
8SECTIONS
9{
10 .text ${RELOCATING+ 0x10000 + SIZEOF_HEADERS} :
11 {
12 CREATE_OBJECT_SYMBOLS
76971f0d
SC
13 ${RELOCATING+ __.text.start = .};
14 ${RELOCATING+ __.init.start = .};
6ecb2b74 15 ${RELOCATING+ LONG(0xf400c001)}
76971f0d 16 ${RELOCATING+ __.init.end = .};
6ecb2b74 17 *(.text)
76971f0d 18 ${RELOCATING+ __.tdesc_start = .};
6ecb2b74 19 ${RELOCATING+ *(.tdesc)}
76971f0d
SC
20 ${RELOCATING+ __.text_end = .} ;
21 ${RELOCATING+ __.initp.start = .};
22 ${RELOCATING+ __.initp.end =.};
6ecb2b74 23
76971f0d 24 ${RELOCATING+_etext =.};
6ecb2b74
PB
25 }
26 .data ${RELOCATING+ SIZEOF(.text) + ADDR(.text) + 0x400000} :
27 {
28 *(.data)
29 ${CONSTRUCTING+CONSTRUCTORS}
30 *(.comment)
76971f0d 31 ${RELOCATING+_edata = .};
6ecb2b74
PB
32 }
33 .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
34 {
35 *(.bss)
36 *(COMMON)
76971f0d
SC
37 ${RELOCATING+ _end = .};
38 ${RELOCATING+ __end = .};
6ecb2b74
PB
39 }
40}
41EOF
This page took 0.029923 seconds and 4 git commands to generate.