How do I check what runtime library a static library (.lib) in Windows has linked to?
I\'m compiling my project with /MDd and I presume a library I\'m linking to is usin
Since MSVPRTD.LIB is the importlib of the dynamic link library of the crt, while you explicitely asked to link to the crt statically, something seems wrong with your build chain.
You may want to check the project file visually for contradictions.