Skip to content

Commit d92cd82

Browse files
committed
feat(Libraries): Displaying the path for linked libraries.
1 parent 3f4eeac commit d92cd82

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

macho/Display.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ namespace Display
7676

7777
for( const auto & lib: file.linkedLibraries() )
7878
{
79-
libs.addChild( XS::ToString::Filename( lib ) );
79+
std::string name = XS::ToString::Filename( lib );
80+
std::string dir = XS::ToString::DirectoryName( lib );
81+
82+
libs.addChild( name + " - " + dir );
8083
}
8184

8285
libs.value( std::to_string( libs.children().size() ) );

0 commit comments

Comments
 (0)