MATLAB: How to find out what shared libraries the .exe file or .dll file depends upon

MATLAB

How do I find out what shared libraries my .exe file or .dll file depends upon?

Best Answer

To determine which shared libraries your application links against, you should look at the header files that are included with "#include" statements in your source code. Then you should look at documentation for these header files to determine which shared library the source code corresponding to those header files is compiled into.
Another way to do this is to use a third party application that looks at a shared library and lists its dependencies. You should be able to use one of these applications with your compiled MEX file to get a list of libraries that the MEX file uses. One example of this application can be found at the following URL: