我使用以下setup.py文件从python调用C ++代码。 (使用swig生成包装后)。
#!/usr/bin/env python
from distutils.core import setup, Extension
example_module = Extension(
'_example',
sources=['example_wrap.cxx', 'example.cpp'],
swig_opts=['-c++', '-py3'],
extra_compile_args =['-lboost_math ','-lboost_system ','-Wno-unused-local-typedef'],
include_dirs = ['/usr/local/include'],
library_dirs = ['/usr/local/include'],
)
setup (name = 'example',
version = '0.1',
ext_modules = [example_module],
py_modules = ["example"],
)
但是,当我尝试包含其他库时,在这种情况下,我会收到以下错误。
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/pathToExample/example.py", line 28, in <module>
_example = swig_import_helper()
File "/pathToExample/example.py", line 24, in swig_import_helper
_mod = imp.load_module('_example', fp, pathname, description)
File "/some_path/lib/python3.4/imp.py", line 243, in load_module
return load_dynamic(name, filename, file)
ImportError: dlopen(/pathToExample/_example.so, 2): Symbol not found: __ZN5boost4math12sph_hankel_1IiiEESt7complexINS0_6detail13bessel_traitsIT_T0_NS0_8policies6policyINS7_14default_policyES9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_EEE11result_typeEES5_S6_
Referenced from: /pathToExample/_example.so
Expected in: dynamic lookup
这可能是一个链接问题吗?我如何更改setup.py?
Edit1:将-lboost_system添加到extra_compile_args
Edit2:这是我的C ++代码:
#include <vector>
#include <complex>
#include </usr/local/include/boost/math/special_functions/bessel.hpp>
using namespace std;
vector<float> Test(int n){
vector<float> a(2);
complex<double> b = boost::math::sph_hankel_1(0, 1);
a[1] = real(b);
return a;
}
编辑3: 这里是我用来生成包装器的swig代码
/* File: example.i */
%module example
%include "std_vector.i"
%{
#define SWIG_FILE_WITH_INIT
#include "example.h"
%}
namespace std
{
%template(FloatVector) vector<float>;
}
std::vector< float > Test(int n);
编辑4:完整性也是我的头文件:
/* File: example.h*/
#include <vector>
#include <complex>
#include </usr/local/include/boost/math/special_functions/bessel.hpp>
std::vector<float> Test(int n);
答案 0 :(得分:1)
是的,它是一个链接问题,如错误所示:
Symbol not found: __ZN5boost4math12sph_hankel_ ...
你错过了Boost Math。
您需要通过将setup.py
添加到选项-lboost_math
来更改extra_compile_args
文件。