2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-30 08:02:38 +00:00

Merge pull request #73 from cowo78/develop

/MACHINE option for x86 is /MACHINE:X86
This commit is contained in:
Stefan Seefeld
2016-06-24 16:41:21 -04:00
committed by GitHub

View File

@@ -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: