(enum bfd_reloc_code_real): Put simple power-to-two relocs together, and add
[deliverable/binutils-gdb.git] / ld / scripttempl / hppaosf.sc
CommitLineData
8ddef552
DM
1cat <<EOF
2OUTPUT_FORMAT("${OUTPUT_FORMAT}")
3OUTPUT_ARCH(${ARCH})
4ENTRY("\$START\$")
5${RELOCATING+${LIB_SEARCH_DIRS}}
6SECTIONS
7{
8 .text ${RELOCATING+${TEXT_START_ADDR}}:
9 {
10 ${RELOCATING+__text_start = .};
11 CREATE_OBJECT_SYMBOLS
12 *(.text)
13 }
14 .data ${RELOCATING+ 0x40000000 } :
15 {
16 ${RELOCATING+__data_start = .};
17 ${RELOCATING+ . = . + 0x1000 };
18 *(.data)
19 ${CONSTRUCTING+CONSTRUCTORS}
20 }
21 .bss ${RELOCATING+SIZEOF(.data) + ADDR(.data)} :
22 {
23 *(.bss)
24 *(COMMON)
25 ${RELOCATING+_end = . };
26 ${RELOCATING+__end = . };
27 }
28}
29EOF
This page took 0.027737 seconds and 4 git commands to generate.