我将使用 SWIG 为某些c ++代码编写python包装器。主要类是Cryptographer
,它使用两个 静态 库 libgmp.a 和 {{3} } 即可。所以我的代码是这样的(为简单起见,删除了一些实现代码):
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();
};
example.cpp:
/* example.cpp */
#include "example.h"
Cryptographer::Cryptographer() {
num = 12;
}
Cryptographer::~Cryptographer() {
}
对于上面的两个文件,创建了一个SWIG界面:
example.i:
%module example
%{
#define SWIG_FILE_WITH_INIT
#include "example.h"
%}
%include "example.h"
然后我运行这些命令:(取自libgmpxx.a)
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"
然后我尝试在python2.7中导入example
模块,但遗憾的是它不起作用:
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
我认为那些在链接过程中没有正确链接的 libgmp 和 libgmpxx 库有问题,但我不知道如何解决它。
BTW,here可以访问所有需要的文件。
答案 0 :(得分:2)
这在gcc 6.3.0中运行良好:
g++ -shared -o _example.so example_wrap.o example.o libgmp.a libgmpxx.a
但是,您可能需要提供.a
文件的完整路径。
这些库需要一个与位置无关的代码(也称为-fPIC)编译。
要重建库: 1)下载:https://gmplib.org/download/gmp/gmp-6.1.2.tar.bz2 2)提取所选目录中的文件。 3)从该目录中运行以下命令:
./configure --with-pic=yes --enable-cxx
如果一切顺利,您将获得Makefile
。
请立即致电make
和make install
。完成。