aboutsummaryrefslogtreecommitdiff
path: root/ld/a29k.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/a29k.sc-sh
parente89ea690c9a232f65df9fe745da7584f488ea0e7 (diff)
downloadgdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.zip
gdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.tar.gz
gdb-6fa11e9f43dee979026d9915fd9b2eb7265e7f7e.tar.bz2
Moved to scripttempl subdir.
Diffstat (limited to 'ld/a29k.sc-sh')
-rwxr-xr-xld/a29k.sc-sh38
1 files changed, 0 insertions, 38 deletions
diff --git a/ld/a29k.sc-sh b/ld/a29k.sc-sh
deleted file mode 100755
index a43a5eb..0000000
--- a/ld/a29k.sc-sh
+++ /dev/null
@@ -1,38 +0,0 @@
-cat <<EOF
-OUTPUT_FORMAT("${OUTPUT_FORMAT}")
-INPUT(/lab3/u3/sym1/tools/usr/lib/segments.o) /* Has .rstack/.mstack */
-${LIB_SEARCH_DIRS}
-
-MEMORY {
- text : ORIGIN = 0x1000000, LENGTH = 0x1000000
- talias : ORIGIN = 0x2000000, LENGTH = 0x1000000
- data : ORIGIN = 0x3000000, LENGTH = 0x1000000
- mstack : ORIGIN = 0x4000000, LENGTH = 0x1000000
- rstack : ORIGIN = 0x5000000, LENGTH = 0x1000000
-}
-SECTIONS
-{
- .text : {
- *(.text)
- ${RELOCATING+ __etext = .};
- *(.lit)
- *(.shdata)
- } ${RELOCATING+ > text}
- .shbss SIZEOF(.text) + ADDR(.text) : {
- *(.shbss)
- }
- .talias : { } ${RELOCATING+ > talias}
- .data : {
- *(.data)
- ${RELOCATING+ __edata = .};
- } ${RELOCATING+ > data}
- .bss SIZEOF(.data) + ADDR(.data) :
- {
- *(.bss)
- *(COMMON)
- ${RELOCATING+ __end = ALIGN(0x8)};
- }
- .mstack : { } ${RELOCATING+ > mstack}
- .rstack : { } ${RELOCATING+ > rstack}
-}
-EOF