Hello,
I routinely compile cython modules for Anaconda on windows x86-64 with mingw w64, for Python 2.7.
I was not able to do the same with Python 3.x.
In both cases, I build the modules through pyximport.
With --verbose, I was able to see the commands and tweak them.
Using Python 3.4, I was able to link xxxx.pyd using -l msvcr100.dll, but the module then did not load.
How can one debud such a situation? Can I see exported symbols of a dll somehow? Can I get
more detailed explanation of the reasons why loading the module failed?
Python 3.6 is probably built with MSVC2015, so there is no direct replacement for msvcNN.dll; can that be fixed somehow?
Thank you in advance for any help.
Stepan Kasal