Skip to content

Commit

Permalink
Comment out support for mtag extension in libunwind
Browse files Browse the repository at this point in the history
Works around build breaks with some compiler versions.

Fixes dotnet/source-build#3424
  • Loading branch information
jkotas authored and VSadov committed Apr 27, 2023
1 parent 24baa04 commit 22ff40d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ int DwarfInstructions<A, R>::stepWithDwarf(A &addressSpace, pint_t pc,
// __unw_step_stage2 is not used for cross unwinding, so we use
// __aarch64__ rather than LIBUNWIND_TARGET_AARCH64 to make sure we are
// building for AArch64 natively.
#if defined(__aarch64__)
#if 0 // defined(__aarch64__)
if (stage2 && cieInfo.mteTaggedFrame) {
pint_t sp = registers.getSP();
pint_t p = sp;
Expand Down

0 comments on commit 22ff40d

Please sign in to comment.