From patchwork Thu Nov 3 21:16:41 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans-Peter Nilsson X-Patchwork-Id: 123508 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 A55BEB6F76 for ; Fri, 4 Nov 2011 08:17:29 +1100 (EST) Received: (qmail 14570 invoked by alias); 3 Nov 2011 21:17:26 -0000 Received: (qmail 14560 invoked by uid 22791); 3 Nov 2011 21:17:25 -0000 X-SWARE-Spam-Status: No, hits=-1.0 required=5.0 tests=AWL, BAYES_50, RP_MATCHES_RCVD, TW_DP X-Spam-Check-By: sourceware.org Received: from ra.se.axis.com (HELO ra.se.axis.com) (195.60.68.13) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 03 Nov 2011 21:16:49 +0000 Received: from localhost (localhost [127.0.0.1]) by ra.se.axis.com (Postfix) with ESMTP id 716AF4B19A for ; Thu, 3 Nov 2011 22:16:44 +0100 (CET) Received: from ra.se.axis.com ([127.0.0.1]) by localhost (ra.se.axis.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id rNW13+4iIT-U for ; Thu, 3 Nov 2011 22:16:43 +0100 (CET) Received: from thoth.se.axis.com (thoth.se.axis.com [10.0.2.173]) by ra.se.axis.com (Postfix) with ESMTP id DE9994B195 for ; Thu, 3 Nov 2011 22:16:43 +0100 (CET) Received: from ignucius.se.axis.com (ignucius.se.axis.com [10.88.21.50]) by thoth.se.axis.com (Postfix) with ESMTP id DC34C3414A; Thu, 3 Nov 2011 22:16:43 +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 pA3LGhF6028468; Thu, 3 Nov 2011 22:16:43 +0100 Received: (from hp@localhost) by ignucius.se.axis.com (8.12.8p1/8.12.8/Debian-2woody1) id pA3LGfju028464; Thu, 3 Nov 2011 22:16:41 +0100 Date: Thu, 3 Nov 2011 22:16:41 +0100 Message-Id: <201111032116.pA3LGfju028464@ignucius.se.axis.com> From: Hans-Peter Nilsson To: gcc-patches@gcc.gnu.org Subject: Committed: fix cris-elf fallout from libgcc move 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 Committed after testing cross to cris-elf and crisv32-elf; for the former back to the two regressions before the recent libgcc move. Ironically, the *reference* in the quoted failure: > complex-1.c:(.text+0x9e): undefined reference to `__nesf2' should not have been there in the first place, as there's a negsf2 pattern (which by itself is of questionable value). I'll add PR's for this and some other issues found when checking crisv32-elf. libgcc: * config.host (crisv32-*-none, cris-*-none): Remove. (crisv32-*-elf): Append to tmake_file, don't just set it. (cris-*-elf): Add missing t-fdpbit to tmake_file. brgds, H-P Index: libgcc/config.host =================================================================== --- libgcc/config.host (revision 180823) +++ libgcc/config.host (working copy) @@ -425,18 +425,10 @@ bfin*-*) extra_parts="crtbegin.o crtend.o crti.o crtn.o" ;; crisv32-*-elf) - tmake_file="cris/t-cris t-fdpbit" + tmake_file="$tmake_file cris/t-cris t-fdpbit" ;; -crisv32-*-none) - tmake_file="cris/t-cris t-fdpbit" - extra_parts="crtbegin.o crtend.o" - ;; cris-*-elf) - tmake_file="$tmake_file cris/t-cris cris/t-elfmulti" - ;; -cris-*-none) - tmake_file="$tmake_file cris/t-cris cris/t-elfmulti" - extra_parts="crtbegin.o crtend.o" + tmake_file="$tmake_file cris/t-cris t-fdpbit cris/t-elfmulti" ;; cris-*-linux* | crisv32-*-linux*) tmake_file="$tmake_file cris/t-cris t-fdpbit cris/t-linux"