From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16124 invoked by alias); 19 Sep 2006 13:41:40 -0000 Received: (qmail 16110 invoked by uid 22791); 19 Sep 2006 13:41:39 -0000 X-Spam-Check-By: sourceware.org Received: from bender.bawue.de (HELO bender.bawue.de) (193.7.176.20) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 19 Sep 2006 13:41:29 +0000 Received: from lagash (mipsfw.mips-uk.com [194.74.144.146]) (using TLSv1 with cipher DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by bender.bawue.de (Postfix) with ESMTP id 6A0A844779; Tue, 19 Sep 2006 15:41:25 +0200 (MEST) Received: from ths by lagash with local (Exim 4.63) (envelope-from ) id 1GPfmy-0003cp-BN; Tue, 19 Sep 2006 14:37:28 +0100 Date: Tue, 19 Sep 2006 13:41:00 -0000 To: binutils@sourceware.org Cc: gdb-patches@sources.redhat.com Subject: [PATCH] Disable libgloss for mips64*-*-linux* Message-ID: <20060919133727.GA4553@networkno.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: Thiemo Seufer X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-09/txt/msg00104.txt.bz2 Hello All, the appended patch disables libgloss for mips64*-*-linux* and does some minor cleanups. Ok to apply? Thiemo 2006-09-19 Thiemo Seufer * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise for mipstx39-*-*, this allows gprof builds for mipstx39-linux builds. Disable libgloss for mips64*-*-linux*. * configure: Regenerate. Index: configure.in =================================================================== RCS file: /cvs/src/src/configure.in,v retrieving revision 1.316 diff -u -p -r1.316 configure.in --- configure.in 30 Aug 2006 13:14:18 -0000 1.316 +++ configure.in 19 Sep 2006 13:05:06 -0000 @@ -728,17 +728,11 @@ case "${target}" in # noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}" ;; - mips*-dec-bsd*) - noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}" - ;; mips*-*-bsd*) noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}" ;; - mipstx39-*-*) - noconfigdirs="$noconfigdirs gprof ${libgcj}" # same as generic mips - ;; mips64*-*-linux*) - noconfigdirs="$noconfigdirs target-newlib ${libgcj}" + noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" ;; mips*-*-linux*) noconfigdirs="$noconfigdirs target-newlib target-libgloss"