diff options
author | Nick Clifton <nickc@redhat.com> | 2004-05-19 10:00:50 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2004-05-19 10:00:50 +0000 |
commit | f2c503287936db895a7ab693f3ddf618a46a89a3 (patch) | |
tree | 769d1df864476d8cf0c49f4b1e326fbe915ab6e1 | |
parent | a30e9cc4a092ed45c7c4c68fc0bfa343782adbae (diff) | |
download | gdb-f2c503287936db895a7ab693f3ddf618a46a89a3.zip gdb-f2c503287936db895a7ab693f3ddf618a46a89a3.tar.gz gdb-f2c503287936db895a7ab693f3ddf618a46a89a3.tar.bz2 |
Remove redundant file
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/scripttempl/i386lynx.sc | 46 |
2 files changed, 4 insertions, 46 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 086f4c2..7bb176f 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2004-05-19 Adam Nemet <anemet@lnxw.com> + + * scripttempl/i386lynx.sc: Remove file. + 2004-05-17 Bob Wilson <bob.wilson@acm.org> * ld.texinfo (Output Section Address): Correct subsection name. diff --git a/ld/scripttempl/i386lynx.sc b/ld/scripttempl/i386lynx.sc deleted file mode 100644 index 16b72a4..0000000 --- a/ld/scripttempl/i386lynx.sc +++ /dev/null @@ -1,46 +0,0 @@ -test -z "$ENTRY" && ENTRY=_start -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -${LIB_SEARCH_DIRS} - -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 |