From patchwork Fri Dec 3 20:39:03 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans-Peter Nilsson X-Patchwork-Id: 74211 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 9FEA6B708B for ; Sat, 4 Dec 2010 07:39:18 +1100 (EST) Received: (qmail 5907 invoked by alias); 3 Dec 2010 20:39:13 -0000 Received: (qmail 5850 invoked by uid 22791); 3 Dec 2010 20:39:12 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, TW_BF, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from anubis.se.axis.com (HELO anubis.se.axis.com) (195.60.68.12) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 03 Dec 2010 20:39:07 +0000 Received: from localhost (localhost [127.0.0.1]) by anubis.se.axis.com (Postfix) with ESMTP id 94E8319D78 for ; Fri, 3 Dec 2010 21:39:04 +0100 (CET) Received: from anubis.se.axis.com ([127.0.0.1]) by localhost (anubis.se.axis.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id u7k56LBIHxVA for ; Fri, 3 Dec 2010 21:39:03 +0100 (CET) Received: from seth.se.axis.com (seth.se.axis.com [10.0.2.172]) by anubis.se.axis.com (Postfix) with ESMTP id 9984719CF8 for ; Fri, 3 Dec 2010 21:39:03 +0100 (CET) Received: from ignucius.se.axis.com (ignucius.se.axis.com [10.88.21.50]) by seth.se.axis.com (Postfix) with ESMTP id 9690A3E0DA; Fri, 3 Dec 2010 21:39:03 +0100 (CET) Received: from ignucius.se.axis.com (localhost [127.0.0.1]) by ignucius.se.axis.com (8.12.8p1/8.12.8/Debian-2woody1) with ESMTP id oB3Kd3F6023412; Fri, 3 Dec 2010 21:39:03 +0100 Received: (from hp@localhost) by ignucius.se.axis.com (8.12.8p1/8.12.8/Debian-2woody1) id oB3Kd3Mj023408; Fri, 3 Dec 2010 21:39:03 +0100 Date: Fri, 3 Dec 2010 21:39:03 +0100 Message-Id: <201012032039.oB3Kd3Mj023408@ignucius.se.axis.com> From: Hans-Peter Nilsson To: gcc-patches@gcc.gnu.org Subject: Fix 46792, disable target-libffi for cris-elf MIME-Version: 1.0 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 tree has been broken for cris-elf since target-libffi was move out from the java crowd and unilaterally enabled. This is just a temporary band-aid to restore the tree to a building state for this target, see the PR. Committed. PR libffi/46792 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi. * configure: Regenerate. (JFTR; not truthfully regenerated, just changed the same way.) brgds, H-P Index: configure.ac =================================================================== --- configure.ac (revision 167441) +++ configure.ac (working copy) @@ -707,8 +707,8 @@ case "${target}" in *-*-aout) unsupported_languages="$unsupported_languages fortran" noconfigdirs="$noconfigdirs target-libffi target-boehm-gc";; - *-*-elf) - noconfigdirs="$noconfigdirs target-boehm-gc";; + *-*-elf) # See PR46792 regarding target-libffi. + noconfigdirs="$noconfigdirs target-libffi target-boehm-gc";; *-*-linux*) noconfigdirs="$noconfigdirs target-newlib target-libgloss";; *)