Skip to content

Commit

Permalink
Correct comment explaining platform symbolification
Browse files Browse the repository at this point in the history
  • Loading branch information
NattyNarwhal committed Oct 14, 2021
1 parent 1dfcead commit 32d6cc6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sentry_options.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ sentry_options_new(void)
opts->auto_session_tracking = true;
opts->system_crash_reporter_enabled = false;
opts->symbolize_stacktraces =
// these platforms don't have debug IDs and we'll need to symbolize
// AIX doesn't have reliable debug IDs and needs symbols.
// Android, the object files are unlikely on the Sentry server.
#if defined(SENTRY_PLATFORM_ANDROID) || defined(SENTRY_PLATFORM_AIX)
true;
#else
Expand Down

0 comments on commit 32d6cc6

Please sign in to comment.