我试图通过swig为python包装简单的c ++代码。我的代码是
hello.cpp
#include <iostream>
/*simple function for trying swig*/
char const* greet(){
return "hello world!";
}
包装代码helloworld.i
/*interface file for swig : corresponds to hello.cpp*/
%module helloworld
%{
/*headers and declarations here*/
extern char const* greet();
%}
extern char const* greet();
我使用的命令:
swig -c++ -python helloworld.i
g++ -O2 -fPIC -c hello.cpp
g++ -O2 -fPIC -c helloworld_wrap.cxx -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7
g++ -lpython -dynamclib hello.o helloworld_wrap.o -o _helloworld.so
前三个命令运行良好并生成所需的所有文件,但最后一个命令会出现以下错误。
错误讯息:
clang: warning: argument unused during compilation: '-dynamclib'
Undefined symbols for architecture x86_64:
"_main", referenced from:
implicit entry/start for main executable
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
这里出了什么问题?我很困惑。
答案 0 :(得分:0)
使用.text {
display: inline-block;
vertical-align: top;
}
代替-dynamiclib
。
编辑(回答下面的评论):
我可以重现错误
-dynamclib
如果我尝试从不同的python导入模块,而不是链接到它。
你正在链接系统python,所以你应该使用它。尝试:
Fatal Python error: PyThreadState_Get: no current thread
Abort trap: 6
可能你在某处安装了另一个python版本。请/usr/bin/python
>>> import helloworld
>>> helloworld.greet()
查看正在调用的版本。
现在,要链接正确的python,您可以使用which python
来确定正确的编译器参数,或者编写一个小python-config
文件并让distutils处理编译(可能是最好的方法去)。