Skip to content

Commit

Permalink
feat(Libraries): Displaying the path for linked libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
macmade committed Sep 11, 2024
1 parent 3f4eeac commit d92cd82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Submodules/STDXS
5 changes: 4 additions & 1 deletion macho/Display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ namespace Display

for( const auto & lib: file.linkedLibraries() )
{
libs.addChild( XS::ToString::Filename( lib ) );
std::string name = XS::ToString::Filename( lib );
std::string dir = XS::ToString::DirectoryName( lib );

libs.addChild( name + " - " + dir );
}

libs.value( std::to_string( libs.children().size() ) );
Expand Down

0 comments on commit d92cd82

Please sign in to comment.