我知道 - 有十亿个类似的问题。我尝试了大多数(甚至全部),但没有一个帮助过。
我需要从python中调用 c ++ 11 函数。
// test.cpp
#define DLL_PUBLIC extern "C" __attribute__ ((visibility ("default")))
DLL_PUBLIC int init_module(void** module, void** error);
我正在构建如下:
# Make
gcc -std=c++11 -c -Wall -Werror -fPIC test.cpp
gcc -shared -o libtest.so test.o
Python代码:
# test.py
test_lib = CDLL('./libtest.so')
例外:
Traceback (most recent call last):
File "test.py", line 3, in <module>
test_lib = CDLL('./libtest.so', mode=1 )
File "/usr/lib/python3.5/ctypes/__init__.py", line 347, in __init__
self._handle = _dlopen(self._name, mode)
OSError: ./libtest.so: undefined symbol: _ZTVN10__cxxabiv120__si_class_type_infoE
我已经尝试在加载我之前加载clib和stdlib - 没有帮助。 有没有通用的方法来指定我的lib需要在加载时加载所有依赖项? (如在windows dlls中?)
谢谢,抱歉打扰。