diff options
Diffstat (limited to 'ld/hppaosf.sc-sh')
-rw-r--r-- | ld/hppaosf.sc-sh | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/ld/hppaosf.sc-sh b/ld/hppaosf.sc-sh deleted file mode 100644 index 30e3c6e..0000000 --- a/ld/hppaosf.sc-sh +++ /dev/null @@ -1,29 +0,0 @@ -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -OUTPUT_ARCH(${ARCH}) -ENTRY("\$START\$") -${RELOCATING+${LIB_SEARCH_DIRS}} -SECTIONS -{ - .text ${RELOCATING+${TEXT_START_ADDR}}: - { - ${RELOCATING+__text_start = .}; - CREATE_OBJECT_SYMBOLS - *(.text) - } - .data ${RELOCATING+ 0x40000000 } : - { - ${RELOCATING+__data_start = .}; - ${RELOCATING+ . = . + 0x1000 }; - *(.data) - ${CONSTRUCTING+CONSTRUCTORS} - } - .bss ${RELOCATING+SIZEOF(.data) + ADDR(.data)} : - { - *(.bss) - *(COMMON) - ${RELOCATING+_end = . }; - ${RELOCATING+__end = . }; - } -} -EOF |