lua-users home
lua-l archive

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



> Why am I receiving this message?
> 
> LINK : warning LNK4098: defaultlib "LIBCMT" conflicts with use of other 
> libs; use /NODEFAULTLIB:library

Because you compiled Lua with one set of runtime libraries (single-threaded,
multi-threaded, debug single-threaded, debug multi-threaded) and your
application with another. (It's in the project options somewhere)

> and, more importantly, how do i get rid of it?

Compile them both with the same set of runtime libraries.

Ben