Skip to content

Commit

Permalink
[mini] Don't use Unwind Backtrace on android-amd64
Browse files Browse the repository at this point in the history
Match what we do for other android RIDs.

The _Unwind_Backtrace support is only used when llvmonly mode is
enabled, which is not something that we do for Android, AFAIK
  • Loading branch information
lambdageek committed Sep 26, 2024
1 parent 19da949 commit fd9f292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mono/mono/mini/mini-amd64.h
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ typedef struct {
// FIXME: Doesn't work on windows
//#define MONO_ARCH_HAVE_INIT_MRGCTX 1

#if defined(TARGET_OSX) || defined(__linux__)
#if defined(TARGET_OSX) || (defined(__linux__) && !defined(TARGET_ANDROID))
#define MONO_ARCH_HAVE_UNWIND_BACKTRACE 1
#endif

Expand Down

0 comments on commit fd9f292

Please sign in to comment.