You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/scripts/make_cython_use_mingw.bat

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