Guest User

Untitled

a guest
Nov 25th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Command
  2. ==========
  3.  
  4. * ldd
  5.  
  6. ```
  7. lddb executable_file
  8. ```
  9.  
  10. **In some circumstances, some versions of ldd may attempt to obtain the dependency information by directly executing the program.**
  11.  
  12. * objdump
  13.  
  14. ```
  15. objdump -p executable_file | grep NEEDED
  16. ```
  17.  
  18. `objdump` is the safer choice.
  19.  
  20.  
  21. Reference
  22. ==========
  23.  
  24. * ldd(1)
  25.  
  26. * objdump(1)
Add Comment
Please, Sign In to add comment