1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 19:37:36 +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: case DT_SYMBOLIC:
break; break;
default: 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; break;
} }
}); });