diff options
author | Jeff Law <law@redhat.com> | 1994-02-08 00:28:48 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-02-08 00:28:48 +0000 |
commit | 90e30f510447ba0a3d464b9a890e6486d96137bd (patch) | |
tree | a3093e1c3105b59b9a0f98565f30da2b5af33072 /ld/scripttempl | |
parent | a9cff99018dac2c5d6a8636beb20abd74a107229 (diff) | |
download | gdb-90e30f510447ba0a3d464b9a890e6486d96137bd.zip gdb-90e30f510447ba0a3d464b9a890e6486d96137bd.tar.gz gdb-90e30f510447ba0a3d464b9a890e6486d96137bd.tar.bz2 |
Renamed hppaosf.sc to hppaelf.sc
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/hppaosf.sc | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/ld/scripttempl/hppaosf.sc b/ld/scripttempl/hppaosf.sc deleted file mode 100644 index ed1c65e..0000000 --- a/ld/scripttempl/hppaosf.sc +++ /dev/null @@ -1,35 +0,0 @@ -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -OUTPUT_ARCH(${ARCH}) -ENTRY("\$START\$") -${RELOCATING+${LIB_SEARCH_DIRS}} -${RELOCATING+___stack_zero = ABSOLUTE(0x2000);} -SECTIONS -{ - .text ${RELOCATING+${TEXT_START_ADDR}}: - { - ${RELOCATING+__text_start = .}; - CREATE_OBJECT_SYMBOLS - *(.hppa_linker_stubs) - *(.text) - ${RELOCATING+etext = .}; - ${RELOCATING+_etext = .}; - } - .data ${RELOCATING+ 0x40000000 } : - { - ${RELOCATING+ . = . + 0x1000 }; - ${RELOCATING+__data_start = .}; - *(.data) - ${CONSTRUCTING+CONSTRUCTORS} - ${RELOCATING+edata = .}; - ${RELOCATING+_edata = .}; - } - .bss ${RELOCATING+SIZEOF(.data) + ADDR(.data)} : - { - *(.bss) - *(COMMON) - ${RELOCATING+end = . }; - ${RELOCATING+_end = . }; - } -} -EOF |