mirror of
https://github.com/boostorg/python.git
synced 2026-01-19 16:32:16 +00:00
/MACHINE option for x86 is /MACHINE:X86
This commit is contained in:
@@ -18,7 +18,7 @@ class features:
|
||||
@staticmethod
|
||||
def architecture(env, arch):
|
||||
if arch:
|
||||
flag = {'x86' : '/MACHINE:X32',
|
||||
flag = {'x86' : '/MACHINE:X86',
|
||||
'x86_64' : '/MACHINE:X64',}.get(arch)
|
||||
if flag:
|
||||
append_feature_flag(env, LINKFLAGS = flag)
|
||||
@@ -48,7 +48,7 @@ class features:
|
||||
#else:
|
||||
# append_feature_flag(env, CCFLAGS = "", LINKFLAGS = "")
|
||||
pass
|
||||
|
||||
|
||||
@staticmethod
|
||||
def debug(env, debug):
|
||||
#if debug:
|
||||
|
||||
Reference in New Issue
Block a user