Skip to content

Commit 21c3374

Browse files
committed
remove the other symbol too
1 parent 120f412 commit 21c3374

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

app/src/main/cpp/base.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class DataPaths {
1515
};
1616

1717
// this is every function that i thought would be relevant
18-
constexpr std::array<const std::string_view, 11> remove_symbols{
18+
constexpr std::array<const std::string_view, 10> remove_symbols{
1919
"__gxx_personality_v0",
2020
"__cxa_throw",
2121
"__cxa_rethrow",
@@ -25,9 +25,10 @@ constexpr std::array<const std::string_view, 11> remove_symbols{
2525
"__cxa_guard_abort",
2626
"__cxa_guard_acquire",
2727
"__cxa_guard_release",
28-
"__cxa_free_exception",
29-
"__emutls_get_address" // added in 2.208
30-
// "__cxa_thread_atexit" // conflicts with fix within geode on some devices
28+
"__cxa_free_exception"
29+
// conflicts with fix within geode on some devices
30+
// "__emutls_get_address", // added in 2.208
31+
// "__cxa_thread_atexit"
3132

3233
// android 10's libc doesn't have these symbols
3334
// and the ndk is forbidden from exporting them!! so keep it for old mods...

0 commit comments

Comments
 (0)