lua-users home
lua-l archive

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


On Tue, Sep 20, 2016 at 3:12 PM, Christian N. <cn00@gmx.at> wrote:

> Of course if a binary was compiled against CRT A but is dynamically linked against CRT B then all bets are off.

That is essentially what I tried to illustrate.

> But normally incompatible runtimes will have different DLL names (msvcr110.dll, msvcr120.dll, etc.).

In the case of MinGW, they will not. It always links to the DLL named msvcrt.dll, which is not even supposed to be linked to except by the OS's own components [1].

Cheers,
V.

[1] https://blogs.msdn.microsoft.com/oldnewthing/20140411-00/?p=1273