1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 10:18:15 +09:00

LibELF: Improve error message for missing symbols

This commit is contained in:
Gunnar Beutner 2021-04-18 08:59:25 +02:00 committed by Andreas Kling
parent 1dab5ca5fd
commit 0cca23def5
Notes: sideshowbarker 2024-07-18 19:24:29 +09:00

View file

@ -475,7 +475,7 @@ VirtualAddress DynamicObject::patch_plt_entry(u32 relocation_offset)
auto result = DynamicLoader::lookup_symbol(symbol);
if (!result.has_value()) {
dbgln("did not find symbol: {}", symbol.name());
dbgln("did not find symbol while doing relocations for library {}: {}", m_filename, symbol.name());
VERIFY_NOT_REACHED();
}