From patchwork Fri Mar 23 14:33:57 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Edelsohn X-Patchwork-Id: 148445 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 97D67B6ED0 for ; Sat, 24 Mar 2012 01:34:41 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1333118081; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Received:Date:Message-ID:Subject:From:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=Vyy17is 24yw5WMTz/ULa39sTRrM=; b=VYHssS6Mik7Rgrh0a5a/h8ANs45tZpV8JFZ/1RA hZCAIXO9dmjltD1lOjYHipJlbbDZGZzlwp9+TW+AxzqhalXCVbvaP1NKSvQi+8j1 IO2AbIAm2VJHea8T0UDQ3GeYIfJ+8heeDORxtpj4WOe8Bo6vz1Ywye4nVd2WpUNV q6uM= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:MIME-Version:Received:Received:Date:Message-ID:Subject:From:To:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=BxGPrsLXEfEPEYh0Pv+fUsPoRnXMEFRpPCFGbCUsA64m+cKI1BATIX5ppTc7xU 8Cwww+ILJIqbgI+UGCa1ET2qK9NLNYHsNgi1l0KXJ4311Yqbr54IJxLLcmsq55dX VUNOfEWclNXMmEpxyVj3GULnsu6bWfDlfn9LfXqYQ/itA=; Received: (qmail 5666 invoked by alias); 23 Mar 2012 14:34:34 -0000 Received: (qmail 5328 invoked by uid 22791); 23 Mar 2012 14:34:32 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, TW_IB X-Spam-Check-By: sourceware.org Received: from mail-yx0-f175.google.com (HELO mail-yx0-f175.google.com) (209.85.213.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 23 Mar 2012 14:33:58 +0000 Received: by yenm3 with SMTP id m3so2932503yen.20 for ; Fri, 23 Mar 2012 07:33:57 -0700 (PDT) MIME-Version: 1.0 Received: by 10.60.25.73 with SMTP id a9mr15266892oeg.63.1332513237271; Fri, 23 Mar 2012 07:33:57 -0700 (PDT) Received: by 10.182.98.132 with HTTP; Fri, 23 Mar 2012 07:33:57 -0700 (PDT) Date: Fri, 23 Mar 2012 10:33:57 -0400 Message-ID: Subject: [PATCH] PR bootstrap/52623 Disable libquadmath on AIX From: David Edelsohn To: GCC Patches Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org The build process of libquadmath sometimes encounters problems on AIX due to multilib and LD_LIBRARY_PATH interfering with GCC's own library dependencies. Libquadmath is not used on AIX, so this patch adds it to noconfigdirs. Thanks, David * configure.ac: Add libquadmath to noconfigdirs for AIX. * configure: Rebuild. Index: configure.ac =================================================================== --- configure.ac (revision 185711) +++ configure.ac (working copy) @@ -509,6 +509,13 @@ fi fi +# Disable libquadmath for some systems. +case "${target}" in + powerpc-*-aix* | rs6000-*-aix*) + noconfigdirs="$noconfigdirs target-libquadmath" + ;; +esac + # Disable libssp for some systems. case "${target}" in avr-*-*)