File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -680,6 +680,10 @@ def _create_batch_scripts(self):
680
680
IF "%WINPYXX%"=="27" set WINPYSPEC=specs90
681
681
682
682
cd %WINPYDIR%
683
+
684
+ if not exist ..\tools\mingw32 echo no_mingw_in_tools
685
+ if not exist ..\tools\mingw32 goto no_mingw_in_tools
686
+
683
687
copy /Y ..\tools\mingw32\%BASEMINGW%\lib\%WINPYMSVCR% libs\%WINPYMSVCR%
684
688
685
689
REM copy the right version of gcc
@@ -695,6 +699,9 @@ def _create_batch_scripts(self):
695
699
..\tools\mingw32\bin\dlltool -D python%WINPYXX%.dll -d python%WINPYXX%.def -l libpython%WINPYXX%.dll.a
696
700
move /Y libpython%WINPYXX%.dll.a libs
697
701
del python%WINPYXX%.def
702
+
703
+ :no_mingw_in_tools
704
+
698
705
"""
699
706
700
707
self .create_batch_script ('Find_And_replace.vbs' , r"""
Original file line number Diff line number Diff line change @@ -240,6 +240,10 @@ description=Implements a XML/HTML/XHTML Markup safe string for Python
240
240
[matplotlib]
241
241
description=2D plotting library (embeddable in GUIs created with PyQt)
242
242
243
+ [mingwpy]
244
+ description=the python friendly windows compiler toolchain
245
+ url=https://anaconda.org/carlkl/mingwpy
246
+
243
247
[mistune]
244
248
description=The fastest markdown parser in pure Python, inspired by marked.
245
249
You can’t perform that action at this time.
0 commit comments