This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug target/55061] libbacktrace build fails during bootstrap on powerpc-apple-darwin9


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55061

--- Comment #14 from Jack Howarth <howarth at nitro dot med.uc.edu> 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?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]