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
feat: Add experimental flag enableUnhandledCPPExceptionsV2 on iOS (#4975)
* feat: Add experimental flag `enableUnhandledCPPExceptionsV2` on iOS
* Adds changelog
* Use an RNSentryExperimentalOptions Obj-C wrapper to access the property
* Fixes lint issues
* Experiment: A more reliable way to report unhandled C++ exceptions in iOS.
259
+
*
260
+
* This approach hooks into all instances of the `__cxa_throw` function, which provides a more comprehensive and consistent exception handling across an app’s runtime, regardless of the number of C++ modules or how they’re linked. It helps in obtaining accurate stack traces.
261
+
*
262
+
* - Note: The mechanism of hooking into `__cxa_throw` could cause issues with symbolication on iOS due to caching of symbol references.
0 commit comments