If a c++ project is compiled with VS2012, using the v110_xp toolset, the file works without problems, but if the default v110 is used, then the code cannot be executed.

Is it possible to run the stuff if v110 is used. E.g. I have the vs2012 redistributable Update 4, but if e.g. Update 2 was used to compile the project, will it make any difference if I install redistributable Update 2 instead of 4?

有帮助吗?

解决方案

In order to target XP you must use the v110_xp toolset. The v110 toolset links to functions available only on Vista and later.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top