aboutsummaryrefslogtreecommitdiff
path: root/ld/ldm88k.sc
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1992-12-08 04:59:31 +0000
committerK. Richard Pixley <rich@cygnus>1992-12-08 04:59:31 +0000
commit43bbd567f2d928b2628e508ee9c75a3920e26b4d (patch)
tree21f1ab246e1a3f963e73c3662bc1d44f591349a1 /ld/ldm88k.sc
parenta362ee23634a2f9ce9642eab09592e8ff6ae509b (diff)
downloadgdb-43bbd567f2d928b2628e508ee9c75a3920e26b4d.zip
gdb-43bbd567f2d928b2628e508ee9c75a3920e26b4d.tar.gz
gdb-43bbd567f2d928b2628e508ee9c75a3920e26b4d.tar.bz2
recording file death
Diffstat (limited to 'ld/ldm88k.sc')
-rwxr-xr-xld/ldm88k.sc52
1 files changed, 0 insertions, 52 deletions
diff --git a/ld/ldm88k.sc b/ld/ldm88k.sc
deleted file mode 100755
index 1e0203f..0000000
--- a/ld/ldm88k.sc
+++ /dev/null
@@ -1,52 +0,0 @@
-TARGET(m88kbcs)
-OUTPUT_FORMAT(m88kbcs)
-OUTPUT_ARCH(m88k)
-ENTRY(__start)
-SEARCH_DIR(/lib)
-SEARCH_DIR(/usr/lib)
-SEARCH_DIR(/usr/local/lib)
-SECTIONS
-{
- .text 0x10000 + SIZEOF_HEADERS :
- {
- CREATE_OBJECT_SYMBOLS
- /* If relocating */
- __.text.start = .;
- __.init.start = .;
- LONG(0xf400c001)
- __.init.end = .;
- /* End if relocating */
- *(.text)
- /* If relocating */
- __.tdesc_start = .;
- *(.tdesc)
- __.text_end = .;
- __.initp.start = .;
- __.initp.end =.;
-
- _etext =.;
- /* End if relocating */
- }
- .data SIZEOF(.text) + ADDR(.text) + 0x400000:
- {
- *(.data)
- __CTOR_LIST__ = .;
- *(CTOR)
- LONG(0);
- __DTOR_LIST__ = . ;
- *(DTOR)
- LONG(0);
- *(.comment)
- _edata = .;
- }
- .bss SIZEOF(.data) + ADDR(.data) :
- {
- *(.bss)
- *(COMMON)
- _end = .;
- ___end = .;
- }
-}
-
-
-