From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 14:34:00 -0000 Message-ID: Subject: [PATCH] PR bootstrap/52623 Disable libquadmath on AIX From: David Edelsohn To: GCC Patches Content-Type: text/plain; charset=ISO-8859-1 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2012-03/txt/msg01566.txt.bz2 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-*-*)