aboutsummaryrefslogtreecommitdiff
path: root/ld/scripttempl
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2010-06-29 04:17:34 +0000
committerAlan Modra <amodra@gmail.com>2010-06-29 04:17:34 +0000
commit360cfc9c8babb5b651c13324366205c23f8786e1 (patch)
tree9760a8c889f268915863c581c5bd6cf18a2a3b93 /ld/scripttempl
parent68e47e3bb1984af50f6c34f9bd3e4070b2d2eb50 (diff)
downloadgdb-360cfc9c8babb5b651c13324366205c23f8786e1.zip
gdb-360cfc9c8babb5b651c13324366205c23f8786e1.tar.gz
gdb-360cfc9c8babb5b651c13324366205c23f8786e1.tar.bz2
remove maxq-coff port
Diffstat (limited to 'ld/scripttempl')
-rw-r--r--ld/scripttempl/maxqcoff.sc43
1 files changed, 0 insertions, 43 deletions
diff --git a/ld/scripttempl/maxqcoff.sc b/ld/scripttempl/maxqcoff.sc
deleted file mode 100644
index d35107d..0000000
--- a/ld/scripttempl/maxqcoff.sc
+++ /dev/null
@@ -1,43 +0,0 @@
-test -z "$ENTRY" && ENTRY=_main
-cat <<EOF
-OUTPUT_FORMAT("${OUTPUT_FORMAT}")
-${LIB_SEARCH_DIRS}
-${RELOCATING+ENTRY (${ENTRY})}
-MEMORY
- {
- rom (rx) : ORIGIN = 0, LENGTH = 0x7FFE
- ram (!rx) : org = 0x0A000, l = 0x5FFF
- }
-
-SECTIONS
-{
- .text ${RELOCATING+ 0x0000}:
- {
- *(.text)
- } >rom
-
- .data ${RELOCATING}:
- {
- *(.data)
- *(.rodata)
- *(.bss)
- *(COMMON)
- ${RELOCATING+ edata = .};
- }>ram
-
-/* .bss ${RELOCATING+ SIZEOF(.data) + 0x0000} :
- {
- *(.bss)
- *(COMMON)
- }
-*/
- .stab 0 ${RELOCATING+(NOLOAD)} :
- {
- [ .stab ]
- }
- .stabstr 0 ${RELOCATING+(NOLOAD)} :
- {
- [ .stabstr ]
- }
-}
-EOF