aboutsummaryrefslogtreecommitdiff
path: root/ld/hppaosf.sc-sh
diff options
context:
space:
mode:
authorDavid MacKenzie <djm@cygnus>1993-06-17 21:21:21 +0000
committerDavid MacKenzie <djm@cygnus>1993-06-17 21:21:21 +0000
commit6fa11e9f43dee979026d9915fd9b2eb7265e7f7e (patch)
tree5af5625da82cfee43d59b254fbdbf6891f2cd4dc /ld/hppaosf.sc-sh
parente89ea690c9a232f65df9fe745da7584f488ea0e7 (diff)
downloadgdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.zip
gdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.tar.gz
gdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.tar.bz2
Moved to scripttempl subdir.
Diffstat (limited to 'ld/hppaosf.sc-sh')
-rw-r--r--ld/hppaosf.sc-sh29
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