From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20643 invoked by alias); 7 Oct 2010 19:27:08 -0000 Received: (qmail 20625 invoked by uid 22791); 7 Oct 2010 19:27:06 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE X-Spam-Check-By: sourceware.org Received: from mailout-de.gmx.net (HELO mail.gmx.net) (213.165.64.22) by sourceware.org (qpsmtpd/0.43rc1) with SMTP; Thu, 07 Oct 2010 19:27:00 +0000 Received: (qmail invoked by alias); 07 Oct 2010 19:26:57 -0000 Received: from xdsl-78-34-211-108.netcologne.de (EHLO localhost.localdomain) [78.34.211.108] by mail.gmx.net (mp056) with SMTP; 07 Oct 2010 21:26:57 +0200 Received: from ralf by localhost.localdomain with local (Exim 4.69) (envelope-from ) id 1P3w7E-0001ce-5a; Thu, 07 Oct 2010 21:26:56 +0200 Date: Thu, 07 Oct 2010 19:27:00 -0000 From: Ralf Wildenhues To: "Naveen H. S" Cc: Paolo Bonzini , Nick Clifton , "binutils@sourceware.org" , "gdb@sourceware.org" , "gcc@gnu.org" , DJ Delorie , gcc-patches@gcc.gnu.org Subject: Re: toplevel *again* out of sync Message-ID: <20101007192655.GG4690@gmx.de> Mail-Followup-To: Ralf Wildenhues , "Naveen H. S" , Paolo Bonzini , Nick Clifton , "binutils@sourceware.org" , "gdb@sourceware.org" , "gcc@gnu.org" , DJ Delorie , gcc-patches@gcc.gnu.org References: <20101002091756.GF13327@gmx.de> <20101002124037.GB3029@gmx.de> <371569CBCFB2E745B891DBB88B2DFDDD19E5ED84CB@KCINPUNHJCMS01.kpit.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <371569CBCFB2E745B891DBB88B2DFDDD19E5ED84CB@KCINPUNHJCMS01.kpit.com> User-Agent: Mutt/1.5.20 (2010-08-04) Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2010-10/txt/msg00022.txt.bz2 * Naveen H. S wrote on Mon, Oct 04, 2010 at 10:44:40AM CEST: > >> Nick, Naveen, the diff between the GCC and the src commits is this; > >> which variant is correct? > >> - noconfigdirs="$noconfigdirs target-libgloss ${libgcj}" > >> + noconfigdirs="$noconfigdirs ${libgcj}" > > The following variant in src is the correct version:- > + noconfigdirs="$noconfigdirs ${libgcj}" > > The GCC commit should be modified as per the src commit. > Sorry, hunk of GCC was my mistake in the modified patch. > > >> Please fix the wrong side, and fix src/ChangeLog. Thanks. > > Sorry, I don't have the permissions to commit these changes. I've committed the first patch below to GCC now, and added the ChangeLog entry below that to src/ChangeLog now. Cheers, Ralf Fixup botched sync of toplevel configure from src. /: Sync from src: * configure.ac (v850 support): Remove target-libgloss from noconfigdirs. * configure: Regenerate. diff --git a/configure.ac b/configure.ac index 5f80aa9..6af4be1 100644 --- a/configure.ac +++ b/configure.ac @@ -968,7 +968,7 @@ case "${target}" in noconfigdirs="$noconfigdirs bfd binutils gas gcc gdb ld target-libstdc++-v3 opcodes target-libgloss ${libgcj}" ;; v850*-*-*) - noconfigdirs="$noconfigdirs target-libgloss ${libgcj}" + noconfigdirs="$noconfigdirs ${libgcj}" ;; vax-*-vms) noconfigdirs="$noconfigdirs bfd binutils gdb ld target-newlib opcodes target-libgloss ${libgcj}" Add missing ChangeLog entry for toplevel configure from 2010-07-26. Index: ChangeLog =================================================================== RCS file: /cvs/src/src/ChangeLog,v retrieving revision 1.932 diff -u -r1.932 ChangeLog --- ChangeLog 2 Oct 2010 14:54:05 -0000 1.932 +++ ChangeLog 7 Oct 2010 19:24:50 -0000 @@ -51,6 +51,11 @@ * configure.ac: Fix unportable shell quoting. * configure: Regenerate. +2010-07-26 Naveen.H.S + + * configure.ac: Support all v850 targets. + * configure: Regenerate. + 2010-07-17 Jack Howarth PR target/44862