MSVCIRTD.dll

Started by
4 comments, last by Farraj 17 years ago
Ok, so I was having this problem for sometime now and I can't seem to fix it. Every time I make a small application/game I like to test it on other PC to see if they will work. Most of the time they don't :( They work fine on my PC but I keep getting "MSVCIRTD.dll not found" for most of them when I play the game on other PCs. What's that about? Can I fix it or is it due to the other PC?? Thansk for any help Cheers
Advertisement
Looks like your app or some library it uses is a debug build. I'm not sure what the DLL is, but it'll be MSVC's "I" Run Time Debug DLL. What the I stands for, I don't know.
Moved to For Beginners.
So compiling the app as a release would solve it??

I'll try it.
Also ensure you are compiling with multithreaded libraries
(/MZ I think). This way the runtime libraries will be statically
linked, rather then dlls.

You could check this in the project properties.
Yes it worked :D

A compiled release does work on other PCs :)

Still not sure why, I'll check it out.

Thanks for the help

This topic is closed to new replies.

Advertisement