Open a4z opened 3 years ago
Hi,
The module distutils is deprecated: https://bugs.python.org/issue2437
https://www.python.org/dev/peps/pep-0632/
Need use setuptools instead.
that gets pulled in from cffi, so this is not our dependency
a little bit of progress, maybe
needs kind of such a logic
if sys.platform=='win32':
runtime_lib_dirs = []
else:
runtime_lib_dirs = ['.']
Additionally, our generated libraries do not export any symbols on Windows This is a problem since there is nothing to link against (when creating the test mylib.dll, we do not get the mylib.lib file so the Windows linker can find mylib from the python test)
On Windows, the current CMake build ends with a Python CFFI problem. This is unfortunately unsolved so far, and help for fixing this problem is welcome