From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22381 invoked by alias); 25 Oct 2012 13:47:48 -0000 Received: (qmail 22323 invoked by uid 48); 25 Oct 2012 13:47:26 -0000 From: "howarth at nitro dot med.uc.edu" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/55061] libbacktrace build fails during bootstrap on powerpc-apple-darwin9 Date: Thu, 25 Oct 2012 13:47:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: howarth at nitro dot med.uc.edu X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-10/txt/msg02350.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55061 --- Comment #13 from Jack Howarth 2012-10-25 13:47:21 UTC --- % grep Unwind_GetIPInfo /usr/lib/gcc/powerpc-apple-darwin9/4.2.1/include/unwind.h % extern _Unwind_Ptr _Unwind_GetIPInfo (struct _Unwind_Context *, int *); % grep Unwind_GetIPInfo /usr/lib/gcc/powerpc-apple-darwin9/4.0.1/include/unwind.h % FYI, the original configure test for _Unwind_GetIPInfo was added in this PR26792... http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26792#c11 I think this is a latent issue created by this commit... r141804 | sje | 2008-11-12 16:35:46 -0500 (Wed, 12 Nov 2008) | 9 lines PR target/27880 * config/unwind_ipinfo.m4 (GCC_CHECK_UNWIND_GETIPINFO): Change from link test to target based test. * libstdc++/v3/configure.ac: Move call to GCC_CHECK_UNWIND_GETIPINFO. * libstdc++/v3/configure: Regenerate. * libjava/configure: Regenerate. which doesn't take in account that on darwin9 only the gcc-4.2.1 compiler provides _Unwind_GetIPInfo through /usr/lib/gcc/powerpc-apple-darwin9/4.2.1/include/unwind.h. This is a broken test since gcc-4.2.1 isn't the default system compiler on powerpc-apple-darwin9.