You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am on macOS version 10.13.6. There is one recent change that now breaks the build on macOS 10.13, since the function backtrace_from_fp() appears not to exist in my older version of macOS. In the latest release, the linker fails with a symbol not found error for _backtrace_from_fp
Latest release file sentry_unwinder_libbacktrace.c has
if (addr) {
#if defined(SENTRY_PLATFORM_MACOS) && __has_builtin(__builtin_available)
if (__builtin_available(macOS 10.14, *))
return (size_t)backtrace_from_fp(addr, ptrs, (int)max_frames);
#endif
return 0;
}
I am on macOS version 10.13.6. There is one recent change that now breaks the build on macOS 10.13, since the function
backtrace_from_fp()
appears not to exist in my older version of macOS. In the latest release, the linker fails with a symbol not found error for_backtrace_from_fp
Latest release file
sentry_unwinder_libbacktrace.c
hasPrevious releases that built in 10.13
I am hoping that you can make this work?
The text was updated successfully, but these errors were encountered: