mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 18:44:20 +08:00
Delete unused scripts.
This commit is contained in:
parent
bb6e756481
commit
7807ee0cd2
@ -1,3 +1,11 @@
|
|||||||
|
2009-09-22 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* scripttempl/a29k.sc: Delete.
|
||||||
|
* scripttempl/ebmon29k.sc: Delete.
|
||||||
|
* scripttempl/m68klynx.sc: Delete.
|
||||||
|
* scripttempl/sa29200.sc: Delete.
|
||||||
|
* scripttempl/sparclynx.sc: Delete.
|
||||||
|
|
||||||
2009-09-21 Alan Modra <amodra@bigpond.net.au>
|
2009-09-21 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* emultempl/ppc32elf.em (no_tls_get_addr_opt): New var.
|
* emultempl/ppc32elf.em (no_tls_get_addr_opt): New var.
|
||||||
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
Loading…
Reference in New Issue
Block a user