为什么它说“无法打开文件“python26.lib””?

发布于 2024-09-18 22:46:42 字数 137 浏览 2 评论 0原文

当我尝试使用cl -LD test.c -test.dll时,它说无法打开“python26.lib”,为什么会发生这种情况?谢谢。 (我试图通过这个命令生成一个 dll 文件以便 python 可以调用它)

When I try to use the cl -LD test.c -test.dll, it says can not open "python26.lib", why this happens?? thank you. (I was trying to generate a dll file by this command so that python could call it)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

打小就很酷 2024-09-25 22:46:42

取自此链接 - 希望这会对您有所帮助 -

这是由文件 c:\Python26\include 中的以下行引起的
\pyconfig.h

# ifdef _DEBUG
# pragma comment(lib,"python26_d.lib")
# else
# pragma comment(lib,"python26.lib")
# endif /* _DEBUG */

所以请:

  1. 在中提供 python26_d.lib
    安装程序。

  1. 删除此自动“pragma
    注释 lib" 来自 pyconfig.h,因为
    我无法从外部禁用它
    (据我所知)。

Taken from this link - Hope this will help you -

This is caused by the following lines in the file c:\Python26\include
\pyconfig.h

# ifdef _DEBUG
# pragma comment(lib,"python26_d.lib")
# else
# pragma comment(lib,"python26.lib")
# endif /* _DEBUG */

So please:

  1. Provide python26_d.lib in the
    installer.

or

  1. Remove this automatic "pragma
    comment lib" from pyconfig.h, since
    I can't disable it from the outside
    (as far as I know).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文