NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

PR/40199 CVS commit: [netbsd-5] src



The following reply was made to PR toolchain/40199; it has been noted by GNATS.

From: Manuel Bouyer <bouyer%netbsd.org@localhost>
To: gnats-bugs%gnats.NetBSD.org@localhost
Cc: 
Subject: PR/40199 CVS commit: [netbsd-5] src
Date: Fri, 16 Jan 2009 22:21:31 +0000 (UTC)

 Module Name:   src
 Committed By:  bouyer
 Date:          Fri Jan 16 22:21:31 UTC 2009
 
 Modified Files:
        src/gnu/usr.bin/binutils/ld [netbsd-5]: Makefile
        src/libexec/ld.elf_so [netbsd-5]: headers.c map_object.c
        src/libexec/ld.elf_so/arch/i386 [netbsd-5]: Makefile.inc
        src/libexec/ld.elf_so/arch/sparc [netbsd-5]: Makefile.inc
        src/rescue [netbsd-5]: Makefile list
        src/usr.bin/ldd [netbsd-5]: Makefile
 Added Files:
        src/libexec/ld.elf_so/arch/i386 [netbsd-5]: Makefile.ld32
        src/libexec/ld.elf_so/arch/sparc [netbsd-5]: Makefile.ld32
        src/rescue [netbsd-5]: list.ldd
        src/usr.bin/ldd [netbsd-5]: Makefile.common Makefile.elf dummy.c ldd.c
            ldd.h ldd_aout.c ldd_elfxx.c
        src/usr.bin/ldd/aout [netbsd-5]: Makefile
        src/usr.bin/ldd/elf32 [netbsd-5]: Makefile
        src/usr.bin/ldd/elf64 [netbsd-5]: Makefile
 Removed Files:
        src/usr.bin/ldd/ldd_aout [netbsd-5]: Makefile ldd.c
        src/usr.bin/ldd/ldd_elf [netbsd-5]: Makefile README ldd.c
 
 Log Message:
 Pull up following revision(s) (requested by mrg in ticket #265):
        libexec/ld.elf_so/headers.c: revision 1.27
        rescue/list: revision 1.35
        libexec/ld.elf_so/arch/sparc/Makefile.ld32: revision 1.1
        usr.bin/ldd/Makefile.elf: revision 1.1
        usr.bin/ldd/Makefile.elf: revision 1.2
        usr.bin/ldd/ldd_aout/ldd.c: file removal
        usr.bin/ldd/Makefile.elf: revision 1.3
        libexec/ld.elf_so/arch/sparc/Makefile.inc: revision 1.12
        usr.bin/ldd/dummy.c: revision 1.1
        gnu/usr.bin/binutils/ld/Makefile: revision 1.28
        usr.bin/ldd/elf32/Makefile: revision 1.1
        usr.bin/ldd/elf32/Makefile: revision 1.2
        usr.bin/ldd/ldd.c: revision 1.3
        usr.bin/ldd/elf32/Makefile: revision 1.3
        usr.bin/ldd/ldd_elf/Makefile: file removal
        usr.bin/ldd/ldd.h: revision 1.1
        usr.bin/ldd/ldd.c: revision 1.4
        usr.bin/ldd/ldd_aout.c: revision 1.1
        usr.bin/ldd/Makefile: revision 1.8
        usr.bin/ldd/Makefile: revision 1.9
        usr.bin/ldd/ldd_elfxx.c: revision 1.1
        libexec/ld.elf_so/map_object.c: revision 1.37
        usr.bin/ldd/ldd_aout/Makefile: file removal
        usr.bin/ldd/elf64/Makefile: revision 1.1
        rescue/Makefile: revision 1.22
        libexec/ld.elf_so/arch/i386/Makefile.ld32: revision 1.1
        usr.bin/ldd/ldd_elf/ldd.c: file removal
        usr.bin/ldd/elf64/Makefile: revision 1.2
        usr.bin/ldd/elf64/Makefile: revision 1.3
        usr.bin/ldd/aout/Makefile: revision 1.1
        libexec/ld.elf_so/arch/i386/Makefile.inc: revision 1.12
        rescue/list.ldd: revision 1.1
        usr.bin/ldd/ldd_elf/README: file removal
        usr.bin/ldd/Makefile.common: revision 1.1
 move the defines for RTLD_ARCH_SUBDIR into a sub-sub-makefile so we can
 grab these values via reach-over more easily.
 some fixes for PR#40170:
 - set NATIVE=yes in the environment for genscripts.sh
 - set LIB_PATH to /usr/lib/{sparc,i386} for those scripts
 - set use_sysroot to "yes", to enable LIB_PATH to work in genscripts.sh
 - get rid of building an a.out-happy ldd (but keep supporting a.out
   binaries for the ELF version.)
 - convert a.out, elf32 and elf64 support into convience libraries and
   link them right ones in.  if elf_ldd() fails on 64 bit platforms,
   try elf32_ldd() before aout_ldd().
 now ldd on 64 bit platforms works for 32 bit binaries, aka PR#40199,
 and it seems that all the issues from README are gone too.
 add some (uintptr_t) to some casts, so these compile with ELFSIZE=32
 *and _LP64.  necessary for 32/64 bit combo ldd support.
 - rework this a bunch to make it work inside /rescue/ldd.
 - fix alpha build.
 make sure we set LIBISPRIVATE.
 fixes build issues reported by moof.
 make sure we set LIBISPRIVATE.
 fixes build issues reported by moof.
 
 
 To generate a diff of this commit:
 cvs rdiff -r1.27 -r1.27.2.1 src/gnu/usr.bin/binutils/ld/Makefile
 cvs rdiff -r1.26 -r1.26.10.1 src/libexec/ld.elf_so/headers.c
 cvs rdiff -r1.36 -r1.36.4.1 src/libexec/ld.elf_so/map_object.c
 cvs rdiff -r1.11 -r1.11.2.1 src/libexec/ld.elf_so/arch/i386/Makefile.inc
 cvs rdiff -r0 -r1.1.2.2 src/libexec/ld.elf_so/arch/i386/Makefile.ld32
 cvs rdiff -r1.11 -r1.11.2.1 src/libexec/ld.elf_so/arch/sparc/Makefile.inc
 cvs rdiff -r0 -r1.1.2.2 src/libexec/ld.elf_so/arch/sparc/Makefile.ld32
 cvs rdiff -r1.21 -r1.21.10.1 src/rescue/Makefile
 cvs rdiff -r1.33 -r1.33.2.1 src/rescue/list
 cvs rdiff -r0 -r1.1.2.2 src/rescue/list.ldd
 cvs rdiff -r1.7 -r1.7.52.1 src/usr.bin/ldd/Makefile
 cvs rdiff -r0 -r1.1.2.2 src/usr.bin/ldd/Makefile.common \
     src/usr.bin/ldd/dummy.c src/usr.bin/ldd/ldd.h src/usr.bin/ldd/ldd_elfxx.c
 cvs rdiff -r0 -r1.3.2.2 src/usr.bin/ldd/Makefile.elf
 cvs rdiff -r0 -r1.2.12.1 src/usr.bin/ldd/ldd.c
 cvs rdiff -r0 -r1.2.2.2 src/usr.bin/ldd/ldd_aout.c
 cvs rdiff -r0 -r1.1.2.2 src/usr.bin/ldd/aout/Makefile
 cvs rdiff -r0 -r1.4.2.2 src/usr.bin/ldd/elf32/Makefile
 cvs rdiff -r0 -r1.4.2.2 src/usr.bin/ldd/elf64/Makefile
 cvs rdiff -r1.8 -r0 src/usr.bin/ldd/ldd_aout/Makefile
 cvs rdiff -r1.20 -r0 src/usr.bin/ldd/ldd_aout/ldd.c
 cvs rdiff -r1.17 -r0 src/usr.bin/ldd/ldd_elf/Makefile
 cvs rdiff -r1.4 -r0 src/usr.bin/ldd/ldd_elf/README
 cvs rdiff -r1.32 -r0 src/usr.bin/ldd/ldd_elf/ldd.c
 
 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.
 


Home | Main Index | Thread Index | Old Index