Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit8d25191

Browse files
authored
Merge pull request#836 from stonebig/master
correct 32bit build bug
2 parents5f5073a +d5bc344 commit8d25191

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

‎winpython/disthelpers.py‎

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def get_msvc_dlls(msvc_version, architecture=None):
256256
'vcomp%s.dll',
257257
)
258258
]
259-
ifmsvc_major=='15':
259+
ifmsvc_major=='15'andarchitecture==64:
260260
namelist= [
261261
name% ('14'+msvc_minor)
262262
fornamein (
@@ -268,6 +268,17 @@ def get_msvc_dlls(msvc_version, architecture=None):
268268
'vcomp%s.dll',
269269
)
270270
]
271+
ifmsvc_major=='15'andarchitecture!=64:
272+
namelist= [
273+
name% ('14'+msvc_minor)
274+
fornamein (
275+
'vcruntime%s.dll',
276+
'msvcp%s.dll',
277+
'vccorlib%s.dll',
278+
'concrt%s.dll',
279+
'vcomp%s.dll',
280+
)
281+
]
271282
windir=os.environ['windir']
272283
is_64bit_windows=osp.isdir(
273284
osp.join(windir,"SysWOW64")

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp