mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +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:
committed by
Andreas Kling
parent
98b8bab441
commit
1951f7874d
@@ -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;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user