25 lines
512 B
25 lines
512 B
@echo off
|
|
call "%~dp0env.bat"
|
|
|
|
rem ******************
|
|
rem mingw part
|
|
rem ******************
|
|
|
|
set pydistutils_cfg=%WINPYDIRBASE%\settings\pydistutils.cfg
|
|
|
|
set tmp_blank=
|
|
echo [config]>"%pydistutils_cfg%"
|
|
echo compiler=mingw32>>"%pydistutils_cfg%"
|
|
|
|
echo [build]>>"%pydistutils_cfg%"
|
|
echo compiler=mingw32>>"%pydistutils_cfg%"
|
|
|
|
echo [build_ext]>>"%pydistutils_cfg%"
|
|
echo compiler=mingw32>>"%pydistutils_cfg%"
|
|
|
|
echo cython has been set to use mingw32
|
|
echo to remove this, remove file "%pydistutils_cfg%"
|
|
|
|
rem pause
|
|
|