From patchwork Tue Aug 9 14:27:30 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 109226 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 5A434B6F70 for ; Wed, 10 Aug 2011 00:27:52 +1000 (EST) Received: (qmail 8382 invoked by alias); 9 Aug 2011 14:27:50 -0000 Received: (qmail 8374 invoked by uid 22791); 9 Aug 2011 14:27:50 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE X-Spam-Check-By: sourceware.org Received: from mail-out.m-online.net (HELO mail-out.m-online.net) (212.18.0.10) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 09 Aug 2011 14:27:33 +0000 Received: from frontend1.mail.m-online.net (frontend1.mail.intern.m-online.net [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 561521801775; Tue, 9 Aug 2011 16:27:31 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.8.164]) by mail.m-online.net (Postfix) with ESMTP id 97CC31C0006B; Tue, 9 Aug 2011 16:27:31 +0200 (CEST) Received: from mail.mnet-online.de ([192.168.8.180]) by localhost (dynscan1.mail.m-online.net [192.168.8.164]) (amavisd-new, port 10024) with ESMTP id 3Zrm0Tmn+IH6; Tue, 9 Aug 2011 16:27:31 +0200 (CEST) Received: from hase.home (ppp-88-217-116-28.dynamic.mnet-online.de [88.217.116.28]) by mail.mnet-online.de (Postfix) with ESMTP; Tue, 9 Aug 2011 16:27:30 +0200 (CEST) From: Andreas Schwab To: Rainer Orth Cc: gcc-patches@gcc.gnu.org Subject: Re: [build] Move unwinder to toplevel libgcc (v2) References: X-Yow: Does someone from PEORIA have a SHORTER ATTENTION span than me? Date: Tue, 09 Aug 2011 16:27:30 +0200 In-Reply-To: (Andreas Schwab's message of "Tue, 09 Aug 2011 14:41:12 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) 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 definition of LIB2ADDEH from ia64/t-glibc is supposed to prevail. I've verified that the resulting libgcc_s.so aggrees with the one produced by the 4.6 branch. Checked in as obvious. Andreas. 2011-08-09 Andreas Schwab * config.host (ia64*-*-linux*): Move ia64/t-glibc after t-libunwind. diff --git a/libgcc/config.host b/libgcc/config.host index d35ee3a..9972bf0 100644 --- a/libgcc/config.host +++ b/libgcc/config.host @@ -472,7 +472,7 @@ ia64*-*-freebsd*) ;; ia64*-*-linux*) extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o" - tmake_file="ia64/t-ia64 t-crtfm t-softfp-tf ia64/t-softfp t-softfp ia64/t-softfp-compat ia64/t-glibc ia64/t-eh-ia64 t-libunwind" + tmake_file="ia64/t-ia64 t-crtfm t-softfp-tf ia64/t-softfp t-softfp ia64/t-softfp-compat ia64/t-eh-ia64 t-libunwind ia64/t-glibc" if test x$with_system_libunwind != xyes ; then tmake_file="${tmake_file} t-libunwind-elf ia64/t-glibc-libunwind" fi