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:
parent
1dab5ca5fd
commit
0cca23def5
Notes:
sideshowbarker
2024-07-18 19:24:29 +09:00
Author: https://github.com/gunnarbeutner
Commit: 0cca23def5
Pull-request: https://github.com/SerenityOS/serenity/pull/6481
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue