Open
Description
How can I compile a python library with MSVC? There is the following code in pyconfig.h line 292:
# if defined(_DEBUG)
# pragma comment(lib,"python36_d.lib")
# elif defined(Py_LIMITED_API)
# pragma comment(lib,"python3.lib")
# else
# pragma comment(lib,"python36.lib")
# endif /* _DEBUG */
This code is trying to link automatically against python36_d.lib - which is not available.