Newbie Question : Linking Problem

I got some error in building my app.

->LINK : warning LNK4098: defaultlib “LIBCMT” conflicts with use of other
libs; use /NODEFAULTLIB:library

I read FAQ about SDL, and I changed my app’s setting from single thread to
multithread. but I still got error like above.

My SDL version is 1.1.3, and I’m using VC++ 6.0 without Service pack.

Any help will be appreciated.

->LINK : warning LNK4098: defaultlib “LIBCMT” conflicts with use of other
libs; use /NODEFAULTLIB:library

I read FAQ about SDL, and I changed my app’s setting from single thread to
multithread. but I still got error like above.

Go to Project/Settings, Link tab and at the textbox labeled “project
options” add:

/nodefaultlib:“libcmt.lib” /nodefaultlib:“libc.lib”

this works for me…

Regards,
Dimitris