| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
Extract of PC/pyconfig.h: # if defined(_DEBUG)
# pragma comment(lib,"python313_d.lib")
# elif defined(Py_LIMITED_API)
# pragma comment(lib,"python3.lib")
# else
# pragma comment(lib,"python313.lib")
# endif /* _DEBUG */In debug mode, extensions are always linked to python313_d.lib. But in release mode, extensions are linked to python3.lib if Py_LIMITED_API is defined. |
Sorry, something went wrong.
Define Py_BUILD_CORE to not attempt to link the extension to python3.lib (which fails).
…thon#111005) Define Py_BUILD_CORE to not attempt to link the extension to python3.lib (which fails).
…thon#111005) Define Py_BUILD_CORE to not attempt to link the extension to python3.lib (which fails).
| Back | FazBrowse Home | New Git URL |
Define Py_BUILD_CORE to not attempt to link the extension to python3.lib (which fails).