* ldsym.c (write_file_locals): Write BSF_CONSTRUCTOR
[deliverable/binutils-gdb.git] / ld / hppaosf.sc-sh
1 cat <<EOF
2 OUTPUT_FORMAT("${OUTPUT_FORMAT}")
3 OUTPUT_ARCH(${ARCH})
4 ENTRY("\$START\$")
5 ${RELOCATING+${LIB_SEARCH_DIRS}}
6 SECTIONS
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 }
29 EOF
This page took 0.029641 seconds and 4 git commands to generate.