From owner-cvs-src-old@FreeBSD.ORG Sat Jul 10 02:33:15 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54F99106578B for ; Sat, 10 Jul 2010 02:33:15 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3C11C8FC1E for ; Sat, 10 Jul 2010 02:33:15 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o6A2XFKL055406 for ; Sat, 10 Jul 2010 02:33:15 GMT (envelope-from nwhitehorn@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o6A2XF6s055405 for cvs-src-old@freebsd.org; Sat, 10 Jul 2010 02:33:15 GMT (envelope-from nwhitehorn@repoman.freebsd.org) Message-Id: <201007100233.o6A2XF6s055405@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to nwhitehorn@repoman.freebsd.org using -f From: Nathan Whitehorn Date: Sat, 10 Jul 2010 02:29:22 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/binutils/bfd elf64-ppc.c src/contrib/binutils/ld lexsup.c src/contrib/gcc/config/rs6000 freebsd.h src/contrib/gdb/gdb ppcfbsd-tdep.c solib-svr4.c src/gnu/lib/csu Makefile src/gnu/lib/libgcc Makefile src/gnu/usr.bin/binutils/as ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jul 2010 02:33:15 -0000 nwhitehorn 2010-07-10 02:29:22 UTC FreeBSD src repository Modified files: contrib/binutils/bfd elf64-ppc.c contrib/binutils/ld lexsup.c contrib/gcc/config/rs6000 freebsd.h contrib/gdb/gdb ppcfbsd-tdep.c solib-svr4.c gnu/lib/csu Makefile gnu/lib/libgcc Makefile gnu/usr.bin/binutils/as Makefile gnu/usr.bin/binutils/gdb Makefile gnu/usr.bin/binutils/libbfd Makefile gnu/usr.bin/cc Makefile.tgt gnu/usr.bin/cc/cc_tools Makefile gnu/usr.bin/cc/include Makefile Added files: gnu/usr.bin/binutils/as/powerpc64-freebsd itbl-cpu.h targ-cpu.h gnu/usr.bin/binutils/gdb Makefile.powerpc64 gnu/usr.bin/binutils/ld Makefile.powerpc64 gnu/usr.bin/binutils/libbfd Makefile.powerpc64 gnu/usr.bin/binutils/libopcodes Makefile.powerpc64 gnu/usr.bin/gdb/arch/powerpc64 Makefile config.h init.c gnu/usr.bin/gdb/kgdb trgt_powerpc64.c Log: SVN rev 209867 on 2010-07-10 02:29:22Z by nwhitehorn Teach our toolchain how to generate 64-bit PowerPC binaries. This fixes a variety of bugs in binutils related to handling of 64-bit PPC ELF, provides a GCC configuration for 64-bit PowerPC on FreeBSD, and associated build systems tweaks. Obtained from: projects/ppc64 Revision Changes Path 1.2 +6827 -2258 src/contrib/binutils/bfd/elf64-ppc.c 1.2 +769 -327 src/contrib/binutils/ld/lexsup.c 1.4 +175 -7 src/contrib/gcc/config/rs6000/freebsd.h 1.2 +12 -7 src/contrib/gdb/gdb/ppcfbsd-tdep.c 1.2 +297 -51 src/contrib/gdb/gdb/solib-svr4.c 1.34 +1 -1 src/gnu/lib/csu/Makefile 1.71 +5 -0 src/gnu/lib/libgcc/Makefile 1.20 +1 -1 src/gnu/usr.bin/binutils/as/Makefile 1.1 +6 -0 src/gnu/usr.bin/binutils/as/powerpc64-freebsd/itbl-cpu.h (new) 1.1 +3 -0 src/gnu/usr.bin/binutils/as/powerpc64-freebsd/targ-cpu.h (new) 1.83 +2 -0 src/gnu/usr.bin/binutils/gdb/Makefile 1.1 +5 -0 src/gnu/usr.bin/binutils/gdb/Makefile.powerpc64 (new) 1.1 +29 -0 src/gnu/usr.bin/binutils/ld/Makefile.powerpc64 (new) 1.35 +2 -0 src/gnu/usr.bin/binutils/libbfd/Makefile 1.1 +27 -0 src/gnu/usr.bin/binutils/libbfd/Makefile.powerpc64 (new) 1.1 +4 -0 src/gnu/usr.bin/binutils/libopcodes/Makefile.powerpc64 (new) 1.15 +5 -1 src/gnu/usr.bin/cc/Makefile.tgt 1.92 +16 -2 src/gnu/usr.bin/cc/cc_tools/Makefile 1.11 +1 -1 src/gnu/usr.bin/cc/include/Makefile 1.1 +14 -0 src/gnu/usr.bin/gdb/arch/powerpc64/Makefile (new) 1.1 +553 -0 src/gnu/usr.bin/gdb/arch/powerpc64/config.h (new) 1.1 +230 -0 src/gnu/usr.bin/gdb/arch/powerpc64/init.c (new) 1.1 +192 -0 src/gnu/usr.bin/gdb/kgdb/trgt_powerpc64.c (new)