Skip to content

Commit 8d2de7b

Browse files
committed
Merge pull request #105 from asottile/fix_windows_wheels
Fix windows wheels. Resolves #28. Resolves #49
2 parents e3d3380 + ee20975 commit 8d2de7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def spawn(self, cmd):
7575
spawn(cmd, dry_run=self.dry_run)
7676
from distutils.msvc9compiler import MSVCCompiler
7777
MSVCCompiler.spawn = spawn
78-
flags = ['-c', '-O2', '/EHsc']
78+
flags = ['-c', '-O2', '/EHsc', '/MT']
7979
link_flags = []
8080
else:
8181
flags = ['-fPIC', '-std=c++0x', '-Wall', '-Wno-parentheses']

0 commit comments

Comments
 (0)