diff options
author | Steve Chamberlain <steve@cygnus> | 1991-07-15 23:43:15 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-07-15 23:43:15 +0000 |
commit | 2013f9b4e1ae20e1ea6be008caeebc3363521d1d (patch) | |
tree | 4d5decf8b77da3e2bbf4fda242714d96ad022bd2 /ld/ldglda29kUr.script | |
parent | a737c70bdefcff76e922e4b0671ac001c1ae4e3d (diff) | |
download | gdb-2013f9b4e1ae20e1ea6be008caeebc3363521d1d.zip gdb-2013f9b4e1ae20e1ea6be008caeebc3363521d1d.tar.gz gdb-2013f9b4e1ae20e1ea6be008caeebc3363521d1d.tar.bz2 |
Initial revision
Diffstat (limited to 'ld/ldglda29kUr.script')
-rwxr-xr-x | ld/ldglda29kUr.script | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/ld/ldglda29kUr.script b/ld/ldglda29kUr.script new file mode 100755 index 0000000..c8e8e2c --- /dev/null +++ b/ld/ldglda29kUr.script @@ -0,0 +1,32 @@ +OUTPUT_FORMAT("coff-a29k-big") +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 0 : { + *(.text) + __etext = .; + *(.lit) + *(.shdata) + } > text + .shbss SIZEOF(.text) + ADDR(.text) : { + *(.shbss) + } + .data SIZEOF(.shbss) + ADDR(.shbss): { + *(.data) + } + .bss SIZEOF(.data) + ADDR(.data) : + { + *(.bss) + [COMMON] + } +} + |