mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:37:35 +00:00
LibELF: Report file path for unimplemented DYNAMIC
tags
This allows us to immediately locate the shared library with the unimplemented tag.
This commit is contained in:
parent
98b8bab441
commit
1951f7874d
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ void DynamicObject::parse()
|
|||
case DT_SYMBOLIC:
|
||||
break;
|
||||
default:
|
||||
dbgln("DynamicObject: DYNAMIC tag handling not implemented for DT_{} ({})", name_for_dtag(entry.tag()), entry.tag());
|
||||
dbgln("DynamicObject: DYNAMIC tag handling not implemented for DT_{} ({}) in {}", name_for_dtag(entry.tag()), entry.tag(), m_filepath);
|
||||
break;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue