diff options
author | K. Richard Pixley <rich@cygnus> | 1992-12-08 04:59:31 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-12-08 04:59:31 +0000 |
commit | 43bbd567f2d928b2628e508ee9c75a3920e26b4d (patch) | |
tree | 21f1ab246e1a3f963e73c3662bc1d44f591349a1 /ld/ldglda29k.script | |
parent | a362ee23634a2f9ce9642eab09592e8ff6ae509b (diff) | |
download | binutils-gdb-43bbd567f2d928b2628e508ee9c75a3920e26b4d.tar.gz |
recording file death
Diffstat (limited to 'ld/ldglda29k.script')
-rwxr-xr-x | ld/ldglda29k.script | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/ld/ldglda29k.script b/ld/ldglda29k.script deleted file mode 100755 index 6d7d19aa8ee..00000000000 --- a/ld/ldglda29k.script +++ /dev/null @@ -1,38 +0,0 @@ -OUTPUT_FORMAT("coff-a29k-big") -INPUT(/lab3/u3/sym1/tools/usr/lib/segments.o) /* Has .rstack/.mstack */ -SEARCH_DIR(/lab3/u3/sym1/tools/lib) -SEARCH_DIR(/lab3/u3/sym1/tools/usr/lib) -SEARCH_DIR(/lab3/u3/sym1/tools/usr/local/lib) -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) - __etext = .; - *(.lit) - *(.shdata) - } > text - .shbss SIZEOF(.text) + ADDR(.text) : { - *(.shbss) - } - .talias : { } > talias - .data : { - *(.data) - __edata = .; - } > data - .bss SIZEOF(.data) + ADDR(.data) : - { - *(.bss) - [COMMON] - __end = ALIGN(0x8); - } - .mstack : { } > mstack - .rstack : { } > rstack -} - |