Visual c++ merge modules

Bevan Thomas 40 Reputation points
2024-11-11T13:05:00.4733333+00:00

From where can I get the v143 visual c++ merge modules for x64.I found it in Program Files\Microsoft Visual Studio\2022\Professional\VC\Redist\MSVC\v143\MergeModules. But the merge module in them contain dll for both amd64 and arm64, can i get merge module targeting only amd64.

Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
5,225 questions
C++
C++
A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
3,774 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Darran Rowe 1,046 Reputation points
    2024-11-11T14:04:14.97+00:00

    From what I remember, no.

    The issue here is how x64 emulation or ARM64 works. Unlike x86, x64 uses the ARM64 native libraries with extra entry points to satisfy dependencies for x64 applications. So, the VC Redistributable has to take into account that it can be installed on x64 systems or ARM64 systems.

    The older x64 redistributables that didn't take this into account actually broke the redistributable on ARM64 systems.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.