diff options
author | Alan Modra <amodra@gmail.com> | 2009-09-22 00:17:48 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-09-22 00:17:48 +0000 |
commit | 7807ee0cd255840ac529796df22470094352da43 (patch) | |
tree | d8ba479b7870b947bc6d0b660771216d2f911569 /ld/scripttempl | |
parent | bb6e7564817ee96955fd908e445a24782f35a1fa (diff) | |
download | gdb-7807ee0cd255840ac529796df22470094352da43.zip gdb-7807ee0cd255840ac529796df22470094352da43.tar.gz gdb-7807ee0cd255840ac529796df22470094352da43.tar.bz2 |
Delete unused scripts.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/a29k.sc | 37 | ||||
-rw-r--r-- | ld/scripttempl/ebmon29k.sc | 27 | ||||
-rw-r--r-- | ld/scripttempl/m68klynx.sc | 46 | ||||
-rw-r--r-- | ld/scripttempl/sa29200.sc | 44 | ||||
-rw-r--r-- | ld/scripttempl/sparclynx.sc | 47 |
5 files changed, 0 insertions, 201 deletions
diff --git a/ld/scripttempl/a29k.sc b/ld/scripttempl/a29k.sc deleted file mode 100644 index 2825b1e..0000000 --- a/ld/scripttempl/a29k.sc +++ /dev/null @@ -1,37 +0,0 @@ -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -${LIB_SEARCH_DIRS} - -SECTIONS -{ - .text : { - *(.text) - ${RELOCATING+ __etext = .}; - ${CONSTRUCTING+ __CTOR_LIST__ = .;} - ${CONSTRUCTING+ LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)} - ${CONSTRUCTING+ *(.ctors)} - ${CONSTRUCTING+ LONG(0)} - ${CONSTRUCTING+ __CTOR_END__ = .;} - ${CONSTRUCTING+ __DTOR_LIST__ = .;} - ${CONSTRUCTING+ LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)} - ${CONSTRUCTING+ *(.dtors)} - ${CONSTRUCTING+ LONG(0)} - ${CONSTRUCTING+ __DTOR_END__ = .;} - *(.lit) - *(.shdata) - } - .shbss SIZEOF(.text) + ADDR(.text) : { - *(.shbss) - } - .data : { - *(.data) - ${RELOCATING+ __edata = .}; - } - .bss SIZEOF(.data) + ADDR(.data) : - { - *(.bss) - *(COMMON) - ${RELOCATING+ __end = ALIGN(0x8)}; - } -} -EOF diff --git a/ld/scripttempl/ebmon29k.sc b/ld/scripttempl/ebmon29k.sc deleted file mode 100644 index 5079488..0000000 --- a/ld/scripttempl/ebmon29k.sc +++ /dev/null @@ -1,27 +0,0 @@ -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -${RELOCATING+ENTRY (start)} - -SECTIONS { - .text ${RELOCATING+${TEXT_START_ADDR}} : - { - *(.text); - ${RELOCATING+_etext = .}; - } - data ${RELOCATING+0x80002000} : - { - *(.data); - *(.mstack); - *(.shbss); - *(.rstack); - *(.mstack); - ${CONSTRUCTING+CONSTRUCTORS} - } - .bss . : - { - *(COMMON) - *(.bss); - ${RELOCATING+_end = .}; - } -} -EOF diff --git a/ld/scripttempl/m68klynx.sc b/ld/scripttempl/m68klynx.sc deleted file mode 100644 index c624aad..0000000 --- a/ld/scripttempl/m68klynx.sc +++ /dev/null @@ -1,46 +0,0 @@ -test -z "$ENTRY" && ENTRY=_start -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -${LIB_SEARCH_DIRS} - -${RELOCATING+ENTRY (${ENTRY})} - -SECTIONS -{ - .text ${RELOCATING+ SIZEOF_HEADERS} : { - *(.init) - *(.text) - ${RELOCATING+ etext = .;} - ${CONSTRUCTING+ ___CTOR_LIST__ = .;} - ${CONSTRUCTING+ LONG((___CTOR_END__ - ___CTOR_LIST__) / 4 - 2)} - ${CONSTRUCTING+ *(.ctors)} - ${CONSTRUCTING+ LONG(0)} - ${CONSTRUCTING+ ___CTOR_END__ = .;} - ${CONSTRUCTING+ ___DTOR_LIST__ = .;} - ${CONSTRUCTING+ LONG((___DTOR_END__ - ___DTOR_LIST__) / 4 - 2)} - ${CONSTRUCTING+ *(.dtors)} - ${CONSTRUCTING+ LONG(0)} - ${CONSTRUCTING+ ___DTOR_END__ = .;} - *(.fini) - ${RELOCATING+ etext = .}; - } - .data ${RELOCATING+ 0x400000 + (. & 0xffc00fff)} : { - *(.data .data2) - ${RELOCATING+ edata = .}; - } - .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} : - { - *(.bss) - *(COMMON) - ${RELOCATING+ end = .}; - } - .stab 0 ${RELOCATING+(NOLOAD)} : - { - [ .stab ] - } - .stabstr 0 ${RELOCATING+(NOLOAD)} : - { - [ .stabstr ] - } -} -EOF diff --git a/ld/scripttempl/sa29200.sc b/ld/scripttempl/sa29200.sc deleted file mode 100644 index 96851d7..0000000 --- a/ld/scripttempl/sa29200.sc +++ /dev/null @@ -1,44 +0,0 @@ -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -${RELOCATING+ENTRY (start)} - -SECTIONS { - .text ${RELOCATING+${TEXT_START_ADDR}} : - { - *(.text); - *(.text1); - *(.text2); - ${RELOCATING+_etext = .}; - } - .lit ALIGN(4) : - { - *(.lit); - ${RELOCATING+_elit = .}; - } - .data ALIGN(4) : - { - *(.data); - *(.data1); - *(.data2); - ${RELOCATING+_edata = .}; - ${CONSTRUCTING+CONSTRUCTORS} - ${CONSTRUCTING+ ___CTOR_LIST__ = .;} - ${CONSTRUCTING+ LONG((___CTOR_END__ - ___CTOR_LIST__) / 4 - 2)} - ${CONSTRUCTING+ *(.ctors)} - ${CONSTRUCTING+ LONG(0)} - ${CONSTRUCTING+ ___CTOR_END__ = .;} - ${CONSTRUCTING+ ___DTOR_LIST__ = .;} - ${CONSTRUCTING+ LONG((___DTOR_END__ - ___DTOR_LIST__) / 4 - 2)} - ${CONSTRUCTING+ *(.dtors)} - ${CONSTRUCTING+ LONG(0)} - ${CONSTRUCTING+ ___DTOR_END__ = .;} - } - - .bss ALIGN(4) : - { - *(COMMON) - *(.bss) - ${RELOCATING+_end = .}; - } -} -EOF diff --git a/ld/scripttempl/sparclynx.sc b/ld/scripttempl/sparclynx.sc deleted file mode 100644 index d6ea110..0000000 --- a/ld/scripttempl/sparclynx.sc +++ /dev/null @@ -1,47 +0,0 @@ -# Linker script for Sparc LynxOS. -test -z "$ENTRY" && ENTRY=_start -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -${LIB_SEARCH_DIRS} - -${RELOCATING+ENTRY (${ENTRY})} - -SECTIONS -{ - .text ${RELOCATING+ SIZEOF_HEADERS} : { - *(.init) - *(.text) - ${RELOCATING+ etext = .;} - ${CONSTRUCTING+ ___CTOR_LIST__ = .;} - ${CONSTRUCTING+ LONG((___CTOR_END__ - ___CTOR_LIST__) / 4 - 2)} - ${CONSTRUCTING+ *(.ctors)} - ${CONSTRUCTING+ LONG(0)} - ${CONSTRUCTING+ ___CTOR_END__ = .;} - ${CONSTRUCTING+ ___DTOR_LIST__ = .;} - ${CONSTRUCTING+ LONG((___DTOR_END__ - ___DTOR_LIST__) / 4 - 2)} - ${CONSTRUCTING+ *(.dtors)} - ${CONSTRUCTING+ LONG(0)} - ${CONSTRUCTING+ ___DTOR_END__ = .;} - *(.fini) - ${RELOCATING+ etext = .}; - } - .data ${RELOCATING+ 0x400000 + (. & 0xffc00fff)} : { - *(.data) - ${RELOCATING+ edata = .}; - } - .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} : - { - *(.bss) - *(COMMON) - ${RELOCATING+ end = .}; - } - .stab 0 ${RELOCATING+(NOLOAD)} : - { - [ .stab ] - } - .stabstr 0 ${RELOCATING+(NOLOAD)} : - { - [ .stabstr ] - } -} -EOF |