lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 05/17/2017 05:06 PM, KHMan wrote:
> Often on MSYS or MSYS2 compiled executables would run, and then on
> Command Prompt it will fail to start. My usual rule is that when the
> executable is to run outside of the MSYS or MSYS2 environment, copy it
> out and test it on Command Prompt to make sure it has all the DLLs it
> needs.

Dependency Walker is handy for seeing what DLLs are required for an EXE.
http://www.dependencywalker.com/

A bit like the ldd command in Linux.

Scott