mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-05 07:39:16 +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:
parent
706a8c05fd
commit
dfdd977a82
Notes:
sideshowbarker
2024-07-19 00:50:39 +09:00
Author: https://github.com/itamar8910
Commit: dfdd977a82
Pull-request: https://github.com/SerenityOS/serenity/pull/3738
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/awesomekling
3 changed files with 2 additions and 10 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue