wscript: don't look for amd64_x86 MSVC crosscompiler when using msvc-wine
This commit is contained in:
parent
f7bc258c2f
commit
42cf51c6aa
1 changed files with 1 additions and 1 deletions
2
wscript
2
wscript
|
@ -176,7 +176,7 @@ def configure(conf):
|
||||||
conf.load('fwgslib reconfigure compiler_optimizations')
|
conf.load('fwgslib reconfigure compiler_optimizations')
|
||||||
if conf.options.ALLOW64:
|
if conf.options.ALLOW64:
|
||||||
conf.env.MSVC_TARGETS = ['x64']
|
conf.env.MSVC_TARGETS = ['x64']
|
||||||
elif sys.maxsize > 2 ** 32:
|
elif sys.maxsize > 2 ** 32 and not conf.options.MSVC_WINE:
|
||||||
conf.env.MSVC_TARGETS = ['amd64_x86', 'x86']
|
conf.env.MSVC_TARGETS = ['amd64_x86', 'x86']
|
||||||
else:
|
else:
|
||||||
conf.env.MSVC_TARGETS = ['x86']
|
conf.env.MSVC_TARGETS = ['x86']
|
||||||
|
|
Loading…
Add table
Reference in a new issue