From 5fddb1939a97b37285c270031d5272064de253af Mon Sep 17 00:00:00 2001 From: nobody <> Date: Fri, 9 Jun 2000 17:31:08 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'binutils-2_10'. Sprout from binutils-2_10-branch 2000-06-09 17:31:07 UTC Nick Clifton 'Assign correct reloc value to size 1 fixes.' Cherrypick from master 2000-05-18 00:29:13 UTC Andrew Cagney 'Typo. bfd@sourceware -> binutils@sourceware.': MAINTAINERS djunpack.bat Delete: ld/testsuite/ld-elfvsb/elf-offset.ld --- MAINTAINERS | 76 ++++++++++++++++ djunpack.bat | 52 +++++++++++ ld/testsuite/ld-elfvsb/elf-offset.ld | 168 ----------------------------------- 3 files changed, 128 insertions(+), 168 deletions(-) create mode 100644 MAINTAINERS create mode 100755 djunpack.bat delete mode 100644 ld/testsuite/ld-elfvsb/elf-offset.ld diff --git a/MAINTAINERS b/MAINTAINERS new file mode 100644 index 00000000000..477d7c8a0fb --- /dev/null +++ b/MAINTAINERS @@ -0,0 +1,76 @@ +Please feel free to add, edit, delete this file. +Please do not make ChangeLog entries. + +COPYING, COPYING.LIB, README + http://gnu.org. + +Makefile.in, configure, configure.in + Please notify the following of any committed patches. + binutils@sourceware.cygnus.com + gdb-patches@sourceware.cygnus.com + +bfd/, binutils/, gas/, gprof/, ld/, opcodes/ & BFD's part of include/ + binutils: http://sourceware.cygnus.com/binutils/ + Patches to binutils@sourceware.cygnus.com. + Please notify the following of any interface changes: + gdb-patches@sourceware.cygnus.com + +config.guess, config.sub + config: http://gnu.org + Changes need to be done in tandem with the official CONFIG + sources or submitted to the master file maintainer and brought + in via a merge. + +libiberty/ & libiberty's part of include/ + gcc: http://gcc.gnu.org + Changes need to be done in tandem with the official GCC + sources or submitted to the master file maintainer and brought + in via a merge. + +ltconfig, ltmain.sh + libtool: http://gnu.org + Changes need to be done in tandem with the official LIBTOOL + sources or submitted to the master file maintainer and brought + in via a merge. + +mkinstalldirs, move-if-change, symlink-tree + autoconf: http://gnu.org + Change need to be done in tandem with the official AUTOCONF + sources or submitted to the master file maintainer and brought + in via a merge. + +newlib/, libgloss/ + http://sourceware.cygnus.com/newlib/ + Patches to newlib@sourceware.cygnus.com. + +gdb/, mmalloc/, readline/, sim/ & GDB's part of include/ + gdb: http://sourceware.cygnus.com/gdb/ + Patches to gdb-patches@sourceware.cygnus.com. + See also gdb/MAINTAINERS, sim/MAINTAINERS, mmalloc/MAINTAINERS. + +itcl/, tcl/, tix/, tk/, libgui/ + insight: http://sourceware.cygnus.com/insight/ + Contact insight@sourceware.cygnus.com. + +winsup/ + cygwin: http://sourceware.cygnus.com/cygwin + Patches to cygwin-patches@sourceware.cygnus.com. + General discussion cygwin@sourceware.cygnus.com. + See also winsup/MAINTAINERS. + +expect/, dejagnu/, config-ml.in, mpw-README, mpw-build.in, +mpw-config.in, mpw-configure, mpw-install, setup.com, texinfo/, +missing, makefile.vms, utils/, config/, config.if, makefile.vms, +missing, ylwrap, mkdep, etc/, install-sh, intl/ + ? + +modules file + Obviously changes to this file should not go through + overseers@sourceware.cygnus.com. If you understand the file + format (or can cut-and-paste existing entries), modify it. If + it scares you, get someone who does understand it to help you. + Be prepared to fix it if you do break it. + +/* Local variables: */ +/* change-log-default-name: "/dev/null" */ +/* End: */ diff --git a/djunpack.bat b/djunpack.bat new file mode 100755 index 00000000000..f09f5ed3251 --- /dev/null +++ b/djunpack.bat @@ -0,0 +1,52 @@ +@echo off +Rem +Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line +Rem format, or else stock DOS/Windows shells will refuse to run it. +Rem +Rem This batch file unpacks the GDB distribution while simultaneously +Rem renaming some of the files whose names are invalid on DOS or conflict +Rem with other file names after truncation to DOS 8+3 namespace. +Rem +Rem Invoke like this: +Rem +Rem djunpack gdb-XYZ.tar +Rem +Rem where XYZ is the version number. If the argument includes leading +Rem directories, it MUST use backslashes, not forward slashes. +Rem +Rem The following 2 lines need to be changed with each new GDB release, to +Rem be identical to the name of the top-level directory where the GDB +Rem distribution unpacks itself. +set GDBVER=gdb-5.0 +if "%GDBVER%"=="gdb-5.0" GoTo EnvOk +Rem If their environment space is too small, re-exec with a larger one +command.com /e:4096 /c %0 %1 +GoTo End +:EnvOk +if not exist %1 GoTo NoArchive +djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp +Rem The following uses a feature of COPY whereby it does not copy +Rem empty files. We need that because the previous line will create +Rem an empty fnchange.tmp even if the command failed for some reason. +copy fnchange.tmp junk.tmp > nul +if not exist junk.tmp GoTo NoDjTar +del junk.tmp +sed -e 's,@V@,%GDBVER%,g' < fnchange.tmp > fnchange.lst +Rem See the comment above about the reason for using COPY. +copy fnchange.lst junk.tmp > nul +if not exist junk.tmp GoTo NoSed +del junk.tmp +djtar -x -n fnchange.lst %1 +GoTo End +:NoSed +echo FAIL: Sed is not available. +GoTo End +:NoDjTar +echo FAIL: DJTAR is not available or no fnchange.lst file in %1. +GoTo End +:NoArchive +echo FAIL: the file %1 does not seem to exist. +echo Remember that %1 cannot use forward slashes, only backslashes. +GoTo End +:End +set GDBVER= diff --git a/ld/testsuite/ld-elfvsb/elf-offset.ld b/ld/testsuite/ld-elfvsb/elf-offset.ld deleted file mode 100644 index dfe429309a7..00000000000 --- a/ld/testsuite/ld-elfvsb/elf-offset.ld +++ /dev/null @@ -1,168 +0,0 @@ -SECTIONS -{ - /* Read-only sections, merged into text segment: */ - . = 0x100000; - .hash : { *(.hash) } - .dynsym : { *(.dynsym) } - .dynstr : { *(.dynstr) } - .gnu.version : { *(.gnu.version) } - .gnu.version_d : { *(.gnu.version_d) } - .gnu.version_r : { *(.gnu.version_r) } - .rel.text : - { - *(.rel.text) - *(.rel.text.*) - *(.rel.gnu.linkonce.t*) - } - .rela.text : - { - *(.rela.text) - *(.rela.text.*) - *(.rela.gnu.linkonce.t*) - } - .rel.data : - { - *(.rel.data) - *(.rel.data.*) - *(.rel.gnu.linkonce.d*) - } - .rela.data : - { - *(.rela.data) - *(.rela.data.*) - *(.rela.gnu.linkonce.d*) - } - .rel.rodata : - { - *(.rel.rodata) - *(.rel.rodata.*) - *(.rel.gnu.linkonce.r*) - } - .rela.rodata : - { - *(.rela.rodata) - *(.rela.rodata.*) - *(.rela.gnu.linkonce.r*) - } - .rel.got : { *(.rel.got) } - .rela.got : { *(.rela.got) } - .rel.ctors : { *(.rel.ctors) } - .rela.ctors : { *(.rela.ctors) } - .rel.dtors : { *(.rel.dtors) } - .rela.dtors : { *(.rela.dtors) } - .rel.init : { *(.rel.init) } - .rela.init : { *(.rela.init) } - .rel.fini : { *(.rel.fini) } - .rela.fini : { *(.rela.fini) } - .rel.bss : { *(.rel.bss) } - .rela.bss : { *(.rela.bss) } - .rel.plt : { *(.rel.plt) } - .rela.plt : { *(.rela.plt) } - .init : { KEEP (*(.init)) } - .plt : { *(.plt) } - .text : - { - *(.text) - *(.text.*) - *(.stub) - /* .gnu.warning sections are handled specially by elf32.em. */ - *(.gnu.warning) - *(.gnu.linkonce.t*) - } - _etext = .; - PROVIDE (etext = .); - .fini : { KEEP (*(.fini)) } =0x9090 - .rodata : - { - *(.rodata) - *(.rodata.*) - *(.gnu.linkonce.r*) - } - .rodata1 : { *(.rodata1) } - /* Adjust the address for the data segment. We want to adjust up to - the same address within the page on the next page up. */ - . = ALIGN(0x1000) + (. & (0x1000 - 1)); - .data : - { - *(.data) - *(.data.*) - *(.gnu.linkonce.d*) - SORT(CONSTRUCTORS) - } - .data1 : { *(.data1) } - .ctors : - { - /* gcc uses crtbegin.o to find the start of the constructors, so - we make sure it is first. Because this is a wildcard, it - doesn't matter if the user does not actually link against - crtbegin.o; the linker won't look for a file to match a - wildcard. The wildcard also means that it doesn't matter which - directory crtbegin.o is in. */ - KEEP (*crtbegin.o(.ctors)) - KEEP (*(SORT(.ctors.*))) - KEEP (*(.ctors)) - } - .dtors : - { - KEEP (*crtbegin.o(.dtors)) - KEEP (*(SORT(.dtors.*))) - KEEP (*(.dtors)) - } - .got : { *(.got.plt) *(.got) } - .dynamic : { *(.dynamic) } - /* We want the small data sections together, so single-instruction offsets - can access them all, and initialized data all before uninitialized, so - we can shorten the on-disk segment size. */ - .sdata : { *(.sdata) *(.sdata.*) } - _edata = .; - PROVIDE (edata = .); - __bss_start = .; - .sbss : { *(.sbss) *(.scommon) } - .bss : - { - *(.dynbss) - *(.bss) - *(COMMON) - /* Align here to ensure that the .bss section occupies space up to - _end. Align after .bss to ensure correct alignment even if the - .bss section disappears because there are no input sections. */ - . = ALIGN(32 / 8); - } - . = ALIGN(32 / 8); - _end = . ; - PROVIDE (end = .); - /* Stabs debugging sections. */ - .stab 0 : { *(.stab) } - .stabstr 0 : { *(.stabstr) } - .stab.excl 0 : { *(.stab.excl) } - .stab.exclstr 0 : { *(.stab.exclstr) } - .stab.index 0 : { *(.stab.index) } - .stab.indexstr 0 : { *(.stab.indexstr) } - .comment 0 : { *(.comment) } - /* DWARF debug sections. - Symbols in the DWARF debugging sections are relative to the beginning - of the section so we begin them at 0. */ - /* DWARF 1 */ - .debug 0 : { *(.debug) } - .line 0 : { *(.line) } - /* GNU DWARF 1 extensions */ - .debug_srcinfo 0 : { *(.debug_srcinfo) } - .debug_sfnames 0 : { *(.debug_sfnames) } - /* DWARF 1.1 and DWARF 2 */ - .debug_aranges 0 : { *(.debug_aranges) } - .debug_pubnames 0 : { *(.debug_pubnames) } - /* DWARF 2 */ - .debug_info 0 : { *(.debug_info) } - .debug_abbrev 0 : { *(.debug_abbrev) } - .debug_line 0 : { *(.debug_line) } - .debug_frame 0 : { *(.debug_frame) } - .debug_str 0 : { *(.debug_str) } - .debug_loc 0 : { *(.debug_loc) } - .debug_macinfo 0 : { *(.debug_macinfo) } - /* SGI/MIPS DWARF 2 extensions */ - .debug_weaknames 0 : { *(.debug_weaknames) } - .debug_funcnames 0 : { *(.debug_funcnames) } - .debug_typenames 0 : { *(.debug_typenames) } - .debug_varnames 0 : { *(.debug_varnames) } - /* These must appear regardless of . */ -} -- cgit v1.2.1