------- Comment #2 from pinskia at gcc dot gnu dot org 2008-11-28 09:04 ------- Here is the patch which I am currently testing: Index: unwind_ipinfo.m4 =================================================================== --- unwind_ipinfo.m4 (revision 142255) +++ unwind_ipinfo.m4 (working copy) @@ -15,6 +15,10 @@ AC_DEFUN([GCC_CHECK_UNWIND_GETIPINFO], [ *) with_system_libunwind=no ;; esac fi + # Darwin before version 9 does not have _Unwind_GetIPInfo. + case ${target} in + *-*-darwin[0-8]*) have_unwind_getipinfo=no ;; + esac # Based on system-libunwind and target, do we have ipinfo? if test x$with_system_libunwind = xyes; then case ${target} in
--- CUT --- I should note that someone almost forgot to regenerate libstdc++ after the original change went in. -- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at gcc dot gnu |pinskia at gcc dot gnu dot |dot org |org Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 Last reconfirmed|0000-00-00 00:00:00 |2008-11-28 09:04:06 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38300