Forrest logo
back to context overview

ldd

List of commands for ldd:

  • ldd:tldr:1a5de ldd: Display shared library dependencies of a binary.
    $ ldd ${path-to-binary}
    try on your machine
    explain this command
  • ldd:tldr:58488 ldd: Display all information about dependencies.
    $ ldd --verbose ${path-to-binary}
    try on your machine
    explain this command
  • ldd:tldr:a5447 ldd: Report missing data objects and perform data relocations.
    $ ldd --data-relocs ${path-to-binary}
    try on your machine
    explain this command
  • ldd:tldr:c0c19 ldd: Report missing data objects and functions, and perform relocations for both.
    $ ldd --function-relocs ${path-to-binary}
    try on your machine
    explain this command
  • ldd:tldr:d3f5f ldd: Display unused direct dependencies.
    $ ldd --unused ${path-to-binary}
    try on your machine
    explain this command
back to context overview