Skip to content

Commit ee20975

Browse files
committed
Fix windows wheels. Resolves #28. Resolves #49
1 parent e3d3380 commit ee20975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
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)