datOverflow
datOverflow

Reputation: 36

MSVCR120.DLL Required

I was asked to download the specified DLL after running one of my apps on a secondary computer. The only problem is whether or not it should have been required. I obviously code in Visual Studio, but it is in pure "C" and a Win32 project, so I'm just wondering if this is normal.

Upvotes: 0

Views: 581

Answers (1)

Woof.S
Woof.S

Reputation: 21

if you don't want to load CRTs, change run time library to static library. (MT)

or you need these dlls in installed visual studio\VC\redist

//after your comments//

MSxx##D.dll D means Debug. if you link any library built with debug run-time, the exe needs debug runtime library

Upvotes: 1

Related Questions