Skip to content

Commit

Permalink
keep the unwinds
Browse files Browse the repository at this point in the history
  • Loading branch information
qimiko committed Jun 23, 2024
1 parent 492e1ac commit 70333e3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/src/main/cpp/launcher-fix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,12 @@ std::vector<std::string> get_symbols_listing() {
"__cxa_guard_abort",
"__cxa_guard_acquire",
"__cxa_guard_release",
"__cxa_free_exception",
"_Unwind_RaiseException",
"_Unwind_Resume"
"__cxa_free_exception"

// android 10's libc doesn't have these symbols
// and the ndk is forbidden from exporting them!! so keep it for old mods...
// "_Unwind_RaiseException",
// "_Unwind_Resume"
};
}

Expand Down

0 comments on commit 70333e3

Please sign in to comment.