-
Notifications
You must be signed in to change notification settings - Fork 348
Conda-installed MinGW not used by cython (distutils?) #26
Copy link
Copy link
Closed
Labels
Description
How to repeat the problem on WinPython 3.4 64-bit on Windows 7 64-bit:
- Install
pycosatandcondausing the binaries provided by Chris Gholke; - Do :
conda init
conda install mingw - What I did is I wrote a simple
pyxcode and tried to compile it usingdistutilsdescribed here: http://docs.cython.org/src/quickstart/build.html#building-a-cython-module-using-distutils - We can see that the conda-installed MinGW is not used.
A few points that stonebig and I discovered:
- If I do
where gcc, it will find conda-installedgcc.batfirst. However, it is just not used. - If we prepend
$WINPYDIR$\MinGW\binatPATHin line 5 of theenv.batfound inWinPythonDir\scripts, this problem goes away.
Reactions are currently unavailable