在 Windows 11 上,使用 ctypes 调用 Python 中用 extern "C" 封装的 C++ 共享库时遇到问题,如何解决?

在 windows 11 上,使用 ctypes 调用 python 中用 extern

调用 c++olor:#f60; text-decoration:underline;' href="https://www.php.cn/zt/15730.html" target="_blank">python 中用 extern "c" 封装过的 c++ 共享库时遇到困难?

windows 11 环境中,使用 g++ 和 gcc 编译 c++ 代码后,用 ctypes 加载动态链接库时出现错误。尽管 c 程序可以正常调用,但使用 extern "c" 封装 c++ 程序却无法调用。

经过调查,发现原因可能是 python 3.8 及更高版本中更新的 dll 搜索机制。之前,python 会在系统路径中搜索 dll,但现在只会在指定的有效位置搜索。

要解决此问题,需要向 python 提供 c++ 库文件的路径。可以使用 os.add_dll_directory() 方法将 dll 所在目录添加到搜索路径中。

例如,如果 libstdc++-6.dll 位于 c:mingwbin 下,则需要使用以下代码:

import ctypes
import os

os.add_dll_directory("C:\MinGW\bin")

dll = ctypes.cdll.LoadLibrary("cppdll.so")

添加路径后,python 就可以找到并加载 c++ 库,调用 extern "c" 封装的函数就会成功。

以上就是在 Windows 11 上,使用 ctypes 调用 Python 中用 extern "C" 封装 C++ 共享库时遇到问题,如何解决?的详细内容,更多请关注硕下网其它相关文章!