This is the error I’m getting:
The procedure entry point ‘_except_handler4_common’ could not be located in the dynamic link library msvcrt.dll
This occurs on a Windows XP SP3 system with Microsoft Visual C++ Redistributable 2005 / 2008 installed, but does not occur on a system with the Visuial C++ Redistributable 2005 / 2008 / 2010 installed
My question:
Is the symbol/entry point ‘_except_handler4_common’ existent in versions of the Visual C++ runtime prior to 2010, or is 2010 required in order to deal with this error?
I guess it’s required. Essentially, it really depends on which version you used to compile the program. If you’ve used Visual Studio 2010, then you’ll need the matching runtime files (unless you linked it statically).