Skip to content

Commit

Permalink
[mini] Don't use Unwind Backtrace on android-amd64 (dotnet#107615)
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
  • Loading branch information
lambdageek authored and sirntar committed Sep 30, 2024
1 parent fa11890 commit 56b5904
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 56b5904

Please sign in to comment.