From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32239 invoked by alias); 25 Oct 2012 14:12:01 -0000 Received: (qmail 32181 invoked by uid 48); 25 Oct 2012 14:11:40 -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 14:12: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/msg02351.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55061 --- Comment #14 from Jack Howarth 2012-10-25 14:11:38 UTC --- Can we enhance the section in config/unwind_ipinfo.m4... # Darwin before version 9 does not have _Unwind_GetIPInfo. changequote(,) case ${target} in *-*-darwin[3-8]|*-*-darwin[3-8].*) have_unwind_getipinfo=no ;; *) have_unwind_getipinfo=yes ;; esac changequote([,]) with a new case instance of *-*-darwin9* that tests.. AC_TRY_COMPILE([,[_Unwind_GetIPInfo();]. [gcc_cv_getipinfo=yes], [gcc_cv_getipinfo=no]) in order to decided if _Unwind_GetIPInfo is available?