我刚刚用 Panda3D 开始了一个 C++ 项目。(视觉工作室 2010)
使用简单的 HelloWorld,我添加了路径等。没有编译错误,除了:
刚刚出现错误:
error LNK1104: cannot open file 'python27_d.lib'
我不知道如何解决它。
请帮忙!
谢谢 !
我刚刚用 Panda3D 开始了一个 C++ 项目。(视觉工作室 2010)
使用简单的 HelloWorld,我添加了路径等。没有编译错误,除了:
刚刚出现错误:
error LNK1104: cannot open file 'python27_d.lib'
我不知道如何解决它。
请帮忙!
谢谢 !
你可以做几件事。
1)只是在发布模式下构建(不是一个好的解决方案,因为你不能用这种方式调试得很好)
2)添加另一个基于“发布”但带有调试符号且没有_DEBUG
预处理器定义的构建配置(可能会弄乱一些库)
3) 在 Visual Studio 2010 中查找或构建带有调试和发布库的 Python 2.7 版本
pyconfig.h
4) 只需在它实际链接到 *.lib 文件的位置更改这一部分,以仅将python27.lib
用于两种配置。
/* For an MSVC DLL, we can nominate the .lib files used by extensions */
#ifdef MS_COREDLL
# ifndef Py_BUILD_CORE /* not building the core - must be an ext */
# if defined(_MSC_VER)
/* So MSVC users need not specify the .lib file in
their Makefile (other compilers are generally
taken care of by distutils.) */
# ifdef _DEBUG
# //-----------------------change the next line-------------//
# pragma comment(lib,"python27_d.lib")
# else
# pragma comment(lib,"python27.lib")
# endif /* _DEBUG */
# endif /* _MSC_VER */
# endif /* Py_BUILD_CORE */
#endif /* MS_COREDLL */
1)2)和4)是hacky解决方案,所以我建议你尝试使用3)。