Welche Bitness von VC ++ Redistributable wird von der 32-Bit-App unter 64-Bit-Windows erwartet?

294
rajeev

Ich installiere eine 32-Bit-App unter 64-Bit-Windows 7. Die App erfordert die Installation von VC ++ 2013 Redistributable und leitet mich an die Microsoft-Site weiter.

Es gibt zwei Versionen von VC ++ 2013 Redistributable 32 und 64 Bit. Was ich jedoch wissen muss, ist, was für eine 32-Bit-Anwendung unter 64-Bit-Windows wirklich geeignet ist.

Vielen Dank

0
Wahrscheinlich 32-Bit-Laufzeit, wenn es sich um eine 32-Bit-App handelt. Patrick Seymour vor 6 Jahren 0
Ich habe die Antwort hier auf SU selbst gefunden: https://superuser.com/questions/695704/do-i-need-both-x64-and-x86-versions-of-the-c-redist rajeev vor 6 Jahren 1

1 Antwort auf die Frage

0
Anaksunaman

The "bitness" of shared libraries (redistributables), such as those provided by Microsoft for Visual C++ (Visual Studio) compiled programs, needs to match the program "bitness", not the OS "bitness".

So a 32-bit program requires the 32-bit version of the redistributables and 64-bit program requires the 64-bit version of the redistributables.