From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11477 invoked by alias); 15 Dec 2004 14:39:35 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 11011 invoked from network); 15 Dec 2004 14:39:26 -0000 Received: from unknown (HELO lon-del-03.spheriq.net) (195.46.50.99) by sourceware.org with SMTP; 15 Dec 2004 14:39:26 -0000 Received: from lon-inc-02.spheriq.net ([195.46.50.66]) by lon-del-03.spheriq.net with ESMTP id iBFEdNdI016589 for ; Wed, 15 Dec 2004 14:39:23 GMT Received: from lon-out-01.spheriq.net (lon-out-01.spheriq.net [195.46.50.129]) by lon-inc-02.spheriq.net with ESMTP id iBFEdMch018648 for ; Wed, 15 Dec 2004 14:39:22 GMT Received: from lon-cus-02.spheriq.net (lon-cus-02.spheriq.net [195.46.50.38]) by lon-out-01.spheriq.net with ESMTP id iBFEdNxD026216 for ; Wed, 15 Dec 2004 14:39:23 GMT Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by lon-cus-02.spheriq.net with ESMTP id iBFEdJ0G001402 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK) for ; Wed, 15 Dec 2004 14:39:22 GMT Received: from zeta.dmz-eu.st.com (ns2.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 69972DBD5 for ; Wed, 15 Dec 2004 14:35:31 +0000 (GMT) Received: by zeta.dmz-eu.st.com (STMicroelectronics, from userid 60012) id BD2CC4735B; Wed, 15 Dec 2004 14:35:14 +0000 (GMT) Received: from zeta.dmz-eu.st.com (localhost [127.0.0.1]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 86EC675969 for ; Wed, 15 Dec 2004 14:35:14 +0000 (UTC) Received: from mail1.bri.st.com (mail1.bri.st.com [164.129.8.218]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 14FFF47353 for ; Wed, 15 Dec 2004 14:35:14 +0000 (GMT) Received: from st.com (terrorhawk.bri.st.com [164.129.15.13]) by mail1.bri.st.com (MOS 3.4.4-GR) with ESMTP id AQD02431 (AUTH "andrew stubbs"); Wed, 15 Dec 2004 14:34:45 GMT Message-ID: <41C04BCC.96B500AA@st.com> Date: Wed, 15 Dec 2004 14:39:00 -0000 From: Andrew STUBBS Organization: STMicroelectronics MIME-Version: 1.0 To: binutils Subject: [SH64 Patch] Reenable gprof Content-Type: multipart/mixed; boundary="------------EB8285AE4BEE48DE0F1930AB" X-O-Virus-Status: No X-O-URL-Status: Not Scanned X-O-CSpam-Status: Not Scanned X-O-Spam-Status: Not scanned X-O-Image-Status: Not Scanned X-O-Att-Status: No X-SpheriQ-Ver: 1.8.3 X-SW-Source: 2004-12/txt/msg00164.txt.bz2 This is a multi-part message in MIME format. --------------EB8285AE4BEE48DE0F1930AB Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-length: 280 Gprof is currently disabled for sh64. The attached patch reenables it by unifying the sh and sh64 entries in configure.in . Note that the configure script needs to be regenerated after the patch is applied. -- Andrew Stubbs andrew.stubbs@st.com (aka. andrew.stubbs@superh.com) --------------EB8285AE4BEE48DE0F1930AB Content-Type: text/plain; charset=us-ascii; name="sh64-gprof.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sh64-gprof.patch" Content-length: 830 2004-12-14 Andrew Stubbs * configure.in (sh64-*-*): Reenable gprof. * configure: Regenerate. --- src/configure.in 2004-11-22 20:33:30.000000000 +0000 +++ src/configure.in 2004-12-14 11:33:13.000000000 +0000 @@ -724,7 +724,7 @@ case "${target}" in romp-*-*) noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes target-libgloss ${libgcj}" ;; - sh-*-*) + sh-*-* | sh64-*-*) case "${host}" in i[[3456789]]86-*-vsta) ;; # don't add gprof back in i[[3456789]]86-*-go32*) ;; # don't add gprof back in @@ -733,9 +733,6 @@ case "${target}" in esac noconfigdirs="$noconfigdirs target-libgloss ${libgcj}" ;; - sh64-*-*) - noconfigdirs="$noconfigdirs target-libgloss ${libgcj}" - ;; sparc-*-elf*) noconfigdirs="$noconfigdirs ${libgcj}" ;; --------------EB8285AE4BEE48DE0F1930AB--