aboutsummaryrefslogtreecommitdiff
path: root/ld/i960.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/i960.sc-sh
parente89ea690c9a232f65df9fe745da7584f488ea0e7 (diff)
downloadgdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.zip
gdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.tar.gz
gdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.tar.bz2
Moved to scripttempl subdir.
Diffstat (limited to 'ld/i960.sc-sh')
-rwxr-xr-xld/i960.sc-sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/ld/i960.sc-sh b/ld/i960.sc-sh
deleted file mode 100755
index ed8ba8b..0000000
--- a/ld/i960.sc-sh
+++ /dev/null
@@ -1,23 +0,0 @@
-cat <<EOF
-SECTIONS
-{
- .text :
- {
- ${GLD_STYLE+ CREATE_OBJECT_SYMBOLS}
- *(.text)
- ${RELOCATING+ _etext = .};
- }
- .data SIZEOF(.text) + ADDR(.text):
- {
- *(.data)
- ${RELOCATING+ _edata = .};
- }
- .bss SIZEOF(.data) + ADDR(.data):
- {
- ${RELOCATING+ _bss_start = .};
- *(.bss)
- *(COMMON)
- ${RELOCATING+ _end = .};
- }
-}
-EOF