gpt4 book ai didi

使用 SWIG 的 C++ Python 包装器

转载 作者:搜寻专家 更新时间:2023-10-31 02:08:36 24 4
gpt4 key购买 nike

我将使用 SWIG 为一些 C++ 代码编写一个 Python 包装器。主类是Cryptographer它使用两个 static 库,它们是 libgmp.a libgmpxx.a 。所以我的代码是这样的(为简单起见删除了一些实现代码):

example.h:

/* example.h */
#include <string.h>
#include <string>
#include <stdlib.h>
#include <vector>
#include <sstream>
#include "gmp.h"
#include "gmpxx.h"

using namespace std;

class Cryptographer {
private:
mpz_class num;
public:
Cryptographer();
virtual ~Cryptographer();
};

示例.cpp:

/* example.cpp */
#include "example.h"

Cryptographer::Cryptographer() {
num = 12;
}

Cryptographer::~Cryptographer() {
}

针对上面的两个文件,创建了一个SWIG接口(interface):

例子.i:

%module example
%{
#define SWIG_FILE_WITH_INIT
#include "example.h"
%}
%include "example.h"

然后我运行这些命令:(取自 here)

swig -c++ -python example.i // creates "example_wrap.cxx"

gcc -c -fPIC example_wrap.cxx -I/usr/include/python2.7 // outputs "example_wrap.o"

gcc -c -fPIC example.cpp -I/usr/include/python2.7 // creates "example.o"

g++ -shared example_wrap.o example.o -o example.so // creates "example.so"

然后我尝试导入 example python2.7 中的模块,但不幸的是它不起作用:

Python 2.7.12 (default, Nov 19 2016, 06:48:10)
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import example
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: ./example.so: undefined symbol: __gmpz_set_si

我猜是那些 libgmplibgmpxx 库在链接过程中没有正确链接的问题,但我不知道如何修复它。

顺便说一句,所有需要的文件都可以通过 this link 访问.

最佳答案

这在 gcc 6.3.0 中工作正常:

g++ -shared -o _example.so example_wrap.o example.o libgmp.a libgmpxx.a

不过,您可能需要提供 .a 文件的完整路径。

并且这些库需要位置独立代码(aka -fPIC)编译。

要重建库:1)下载:https://gmplib.org/download/gmp/gmp-6.1.2.tar.bz22) 将文件解压缩到所选目录中。3) 从那个目录运行这个命令:

./configure --with-pic=yes --enable-cxx

如果一切顺利,您将得到一个Makefile。因此调用 make,然后立即调用 make install。完毕。

关于使用 SWIG 的 C++ Python 包装器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47377338/

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