From patchwork Tue Nov 13 14:18:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Edelsohn X-Patchwork-Id: 198697 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 D94E52C00AA for ; Wed, 14 Nov 2012 01:18:40 +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=1353421121; 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=0YWP4g9 iRnl/g2uu/xa3PTheSnk=; b=kpZutgA6OqB2+qbNfzCTdm+pLxmIuL9o/2BRW+5 kyzKwwmq3DusCRat7wvS4eqnSvaCot4mpTBoBuKdiw9YfZ2aihsoGEcSclIupb1l hIxPPuNddWBovrJA3u7maD5iw4LyjrBBjEF+nMUb8woSFAIMxNRXWk8hbOvXYp3N SWsE= 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=GyZXj+U9eF01R0RlfmLf7a8N03Nc2XB7IL8//Q+PbAO6gYMsb/9FzKf0zddhGT VWtkmj8lrHr6oSEkR3d8N8rJabwzw8m7QJCZGpql+gzL3R1B2E0M082XUMvalM+H 2uzaKXX1OpsK3qYokv4I6HpgaA1FOapGcr6miYibH59xo=; Received: (qmail 5824 invoked by alias); 13 Nov 2012 14:18:34 -0000 Received: (qmail 5813 invoked by uid 22791); 13 Nov 2012 14:18:32 -0000 X-SWARE-Spam-Status: No, hits=-4.2 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE, TW_IB X-Spam-Check-By: sourceware.org Received: from mail-ye0-f175.google.com (HELO mail-ye0-f175.google.com) (209.85.213.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 13 Nov 2012 14:18:12 +0000 Received: by mail-ye0-f175.google.com with SMTP id m2so1375758yen.20 for ; Tue, 13 Nov 2012 06:18:11 -0800 (PST) MIME-Version: 1.0 Received: by 10.58.221.130 with SMTP id qe2mr27049037vec.14.1352816291702; Tue, 13 Nov 2012 06:18:11 -0800 (PST) Received: by 10.58.235.232 with HTTP; Tue, 13 Nov 2012 06:18:11 -0800 (PST) Date: Tue, 13 Nov 2012 09:18:11 -0500 Message-ID: Subject: [PATCH] Disable libsanitizer 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 Libsanitizer is not supported on AIX. Disable in configure. * configure.ac: Disable libsanitizer on AIX. Merge libquadmath sections. * configure: Regenerate. Index: configure.ac =================================================================== --- configure.ac (revision 193476) +++ configure.ac (working copy) @@ -540,6 +540,9 @@ # Disable libquadmath for some systems. case "${target}" in + avr-*-*) + noconfigdirs="$noconfigdirs target-libquadmath" + ;; # libquadmath is unused on AIX and libquadmath build process use of # LD_LIBRARY_PATH can break AIX bootstrap. powerpc-*-aix* | rs6000-*-aix*) @@ -552,6 +555,9 @@ cris-*-* | crisv32-*-* | mmix-*-*) noconfigdirs="$noconfigdirs target-libsanitizer" ;; + powerpc-*-aix* | rs6000-*-aix*) + noconfigdirs="$noconfigdirs target-libsanitizer" + ;; esac # Disable libssp for some systems. @@ -571,13 +577,6 @@ ;; esac -# Disable libquadmath for some systems. -case "${target}" in - avr-*-*) - noconfigdirs="$noconfigdirs target-libquadmath" - ;; -esac - # Disable libstdc++-v3 for some systems. # Allow user to override this if they pass --enable-libstdc++-v3 if test "${ENABLE_LIBSTDCXX}" = "default" ; then