mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:07:45 +00:00
LibELF: Improve error message for missing symbols
This commit is contained in:
parent
1dab5ca5fd
commit
0cca23def5
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);
|
auto result = DynamicLoader::lookup_symbol(symbol);
|
||||||
if (!result.has_value()) {
|
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();
|
VERIFY_NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue