1
Fork 0
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:
Jelle Raaijmakers 2023-04-30 13:07:06 +02:00 committed by Andreas Kling
parent 98b8bab441
commit 1951f7874d

View file

@ -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;
}
});