This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/55061] libbacktrace build fails during bootstrap on powerpc-apple-darwin9
- From: "howarth at nitro dot med.uc.edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Thu, 25 Oct 2012 17:56:54 +0000
- Subject: [Bug target/55061] libbacktrace build fails during bootstrap on powerpc-apple-darwin9
- Auto-submitted: auto-generated
- References: <bug-55061-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55061
--- Comment #18 from Jack Howarth <howarth at nitro dot med.uc.edu> 2012-10-25 17:56:54 UTC ---
(In reply to comment #17)
Are you sure? I see...
if test -n "${with_target_subdir}"; then
GCC_CHECK_UNWIND_GETIPINFO
else
AC_CHECK_FUNC(_Unwind_GetIPInfo, [have_unwind_getipinfo=yes],
[have_unwind_getipinfo=no])
if test "$have_unwind_getipinfo" = "yes"; then
AC_DEFINE(HAVE_GETIPINFO, 1, [Define if _Unwind_GetIPInfo is available.])
fi
fi
in libbacktrace/configure.ac and it seems that GCC_CHECK_UNWIND_GETIPINFO is
only defined in config/unwind_ipinfo.m4. If so this is no longer a compile or
link test but decided by target only (see r141804).