gpt4 book ai didi

python - 将 C++ 包装到 Python - 其中部分代码是没有源代码的共享库

转载 作者:太空狗 更新时间:2023-10-29 12:16:32 30 4
gpt4 key购买 nike

我有一个 Linux .so-library secdyn.so 带有一个没有源代码的头文件。

/* secdyn.h */
int sec2(int a);

我想通过 Swig 将它包装到 Python,因此我写了一个 subdyn.h

#include <iostream>
#include "secdyn.h"
int subdyn(int a,int debuglevel);

和一个subdyn.cpp

#include "subdyn.h"
int subdyn(int a,int debuglevel)
{
if (debuglevel>0) std::cout << "a = " << a << std::endl;
return sec2(a);
}

和一个 subdyn.i(见下面我的回答!!! - 第一行有错误)

%module substatic
%{
#define SWIG_FILE_WITH_INIT
#include "subdyn.h"
%}
%include "subdyn.h"

并编译

swig -c++ -python subdyn.i
g++ -fPIC subdyn_wrap.cxx -c -g -I/usr/include/python2.7/
g++ -fPIC subdyn.cpp -c -g
g++ -shared subdyn_wrap.o subdyn.o secdyn.so -o _subdyn.so

构建后我将 $LD_LIBRARY_PATH 设置为包含“pwd”

$ ldd _subdyn.so
linux-gate.so.1 => (0xb7702000)
secdyn.so => ./secdyn.so (0xb76f4000)
libstdc++.so.6 => /usr/lib/i386-linux-gnu/libstdc++.so.6 (0xb75ee000)
libm.so.6 => /lib/i386-linux-gnu/i686/cmov/libm.so.6 (0xb75c7000)
libgcc_s.so.1 => /lib/i386-linux-gnu/libgcc_s.so.1 (0xb75aa000)
libc.so.6 => /lib/i386-linux-gnu/i686/cmov/libc.so.6 (0xb7446000)
/lib/ld-linux.so.2 (0xb7703000)

我可以制作一个使用 secdyn.so 和 subdyn.so 的 C++ 二进制文件 - 工作正常。

但是我无法将这个库导入 Python

$ python
>>> import subdyn
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: dynamic module does not define init function (initsubdyn)

我可以注意到,如果 secdyn 作为静态库出现,一切正常,但对于动态库,这会中断。

我附上了一个有效的静态 swig 链接示例,以及一个在 http://petertoft.dk/code/swig.tgz 上不起作用的动态链接示例(上面的代码)

线索?

最佳答案

我在上面错过的错误是错误的 subdyn.i。第一行应该是 %模块子动态

然后就可以了。我重新上传了http://petertoft.dk/code/swig.tgz - 其中包含静态和动态示例。两者现在都有效:)

关于python - 将 C++ 包装到 Python - 其中部分代码是没有源代码的共享库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22863856/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com