Last active
August 7, 2018 04:46
-
-
Save fx-kirin/44deefd8bf9966212e30b01dde9945e8 to your computer and use it in GitHub Desktop.
Python 3.6 MingW 32 Compile environment.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- cygwinccompiler.py | |
+++ cygwinccompiler.py | |
@@ -82,7 +82,18 @@ def get_msvcr(): | |
elif msc_ver == '1600': | |
# VS2010 / MSVC 10.0 | |
return ['msvcr100'] | |
+ elif msc_ver == '1700': | |
+ # Visual Studio 2012 / Visual C++ 11.0 | |
+ return ['msvcr110'] | |
+ elif msc_ver == '1800': | |
+ # Visual Studio 2013 / Visual C++ 12.0 | |
+ return ['msvcr120'] | |
+ elif msc_ver == '1900': | |
+ # Visual Studio 2015 / Visual C++ 14.0 | |
+ # "msvcr140.dll no longer exists" http://blogs.msdn.com/b/vcblog/archive/2014/06/03/visual-studio-14-ctp.aspx | |
+ return ['msvcr100'] | |
else: | |
+ # to do: can we make this futureproof? | |
raise ValueError("Unknown MS Compiler version %s " % msc_ver) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://d.hatena.ne.jp/maminus/20180611/1528727604
https://bugs.python.org/file40608/patch.diff