1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-15 07:32:08 +00:00

LibC: Link statically with libstdc++

This allows us to have the implementation of __cxa_demangle in libc.so.
This commit is contained in:
Itamar 2020-11-13 14:47:00 +02:00 committed by Andreas Kling
parent 706a8c05fd
commit dfdd977a82
3 changed files with 2 additions and 10 deletions

View file

@ -264,10 +264,7 @@ String Loader::symbolicate(u32 address, u32* out_offset) const
#else
auto& demangled_name = symbol.demangled_name;
if (demangled_name.is_null()) {
// FIXME: Temporarily disabled demangling since it is currently not supported with shared libraries
demangled_name = symbol.name;
// demangled_name = demangle(symbol.name);
demangled_name = demangle(symbol.name);
}
#endif