How to find out which DLL the executable depends on?
On systems with the GNU development toolchain ( gcc& c), I use this for this ldd, but what about systems clanglike Mac OS X (which doesn't ldd) , for example ?
gcc
ldd
clang
On Mac OSX, use otool -Linstead ldd. This works regardless of the compiler you use. Other operating systems may have other tools; for example on Windows you would use Dependency Walker.
otool -L
Dependency Walker
Source: https://habr.com/ru/post/1540851/More articles:Как задержать отображение Bootstrap 3 модального после клика - javascriptHow does sending and receiving work in Python sockets? - pythonUpdating management and aggregation properties and reprocessing - sapui5Features of using the link / @ import / js method to use Google Fonts - performanceHow to make docstring respect PEP257 and use docopt to match i18n with gettext? - pythonHow to get the Finish or Back button in the EKEventViewController if there is no navigation bar? - iosRegister DirectShow built-in filter - wpfScala inconsistent sub-matrix - arraysHow can I directly embed a DirectShow Push Source filter in an EXE? - filterС# Регистрация Встроенный фильтр Directshow - reflectionAll Articles