Page 1 of 1

error compiling example 10.Shaders

Posted: Fri Nov 18, 2005 3:12 pm
by ColeZero
i get a strange error when i try to compile the shader-example.

i'm using irrlicht 0.12 and VisualStudio.NET 2002.

The Error:
10.Shaders warning LNK4098: standard library ' LIBCMT ' stands in conflict with other libraries; /NODEFAULT:

What is wrong?

Posted: Fri Nov 18, 2005 3:35 pm
by SanderVocke
Try going to Project Settings (or whatever that is in .NET, I use vc++), going to c/c++ and adding /nodefaultlibs to the list of Project Options. This is how I recall solving the problem, not sure if it works for you.

Posted: Fri Nov 18, 2005 3:46 pm
by Guest
why dont people actually read the error messages?

"standard library ' LIBCMT ' stands in conflict with other libraries; /NODEFAULT: "

the whole message should end with this :
"/NODEFAULT:libcmt.lib"
or something like that.

so why dont you try that ?