8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 166de9d commit d5bc344Copy full SHA for d5bc344
winpython/disthelpers.py
@@ -256,7 +256,7 @@ def get_msvc_dlls(msvc_version, architecture=None):
256
'vcomp%s.dll',
257
)
258
]
259
- if msvc_major == '15':
+ if msvc_major == '15' and architecture == 64:
260
namelist = [
261
name % ('14' + msvc_minor)
262
for name in (
@@ -268,6 +268,17 @@ def get_msvc_dlls(msvc_version, architecture=None):
268
269
270
271
+ if msvc_major == '15' and architecture != 64:
272
+ namelist = [
273
+ name % ('14' + msvc_minor)
274
+ for name in (
275
+ 'vcruntime%s.dll',
276
+ 'msvcp%s.dll',
277
+ 'vccorlib%s.dll',
278
+ 'concrt%s.dll',
279
+ 'vcomp%s.dll',
280
+ )
281
+ ]
282
windir = os.environ['windir']
283
is_64bit_windows = osp.isdir(
284
osp.join(windir, "SysWOW64")
0 commit comments