1
4

1 回答 1

1

The easiest way to test is to install depends on the computer. Most likely, your application is built to use a later version of C++ runtime libraries, e.g. <assemblyIdentity type='win32' name='Microsoft.VC80.CRT' version='8.0.50727.4053' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b' />, but on the XP system it is an older version.

You would need to check what version of the runtime library used by analysing the program's manifest. Then check what depends is showing.

If the required version of runtime is missing, distribute it with the program's install.

On the side note, you could consider switching to the static link. The size of the binaries will be bigger, but these type of problems will be gone

于 2013-02-21T03:57:16.950 回答