Skip to content

Instantly share code, notes, and snippets.

@Bogdaan
Last active December 2, 2019 14:04
Show Gist options
  • Save Bogdaan/d9fe56edf4c9f854c38d782482979eb5 to your computer and use it in GitHub Desktop.
Save Bogdaan/d9fe56edf4c9f854c38d782482979eb5 to your computer and use it in GitHub Desktop.
Tools for binaries
# list shared libraries required for binary
otool -L <binary>
# linux version
ldd <binary>
# list all system shared libraries
sbin/ldconfig -p | less
# overide libraries for some program
LD_LIBRARY_PATH=/opt/my/lib binary
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment