error compiling example 10.Shaders

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
ColeZero
Posts: 20
Joined: Wed Jul 27, 2005 2:33 pm

error compiling example 10.Shaders

Post 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?
SanderVocke
Posts: 40
Joined: Mon Oct 31, 2005 1:19 pm
Location: Netherlands

Post 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.
"The shortest distance between two points is always under construction."
- Noelie Alite
Guest

Post 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 ?
Post Reply