You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are processing DWARF symbols for one of our .so files and hitting infinite recursion on function name resolution.
Potentially, this is a bug in DWARF symbols generation from the Android NDK Toolchain. Effectively, there is a self-reference loop, but with one layer of indirection so the existing fix for this does not work: #202.
Potential fixes
Add a depth check to prevent infinite recursion -- I'm not sure if this is necessary or not. I don't know if there is at-most one level of indirection or arbitrary amounts possible.
Background
We are processing DWARF symbols for one of our
.so
files and hitting infinite recursion on function name resolution.Potentially, this is a bug in DWARF symbols generation from the Android NDK Toolchain. Effectively, there is a self-reference loop, but with one layer of indirection so the existing fix for this does not work: #202.
Potential fixes
The text was updated successfully, but these errors were encountered: