Python から C コードを生成するために Cython を試していますが、名前マングリングに問題があるようです。最初にコードを python から c コードに変換し、次に gcc を使用してコードを .so にコンパイルします。C/python API の代わりに cython を使用したい理由は、後でスピードなどのライブラリにしたい、より複雑なクラスでこれを使用するためです (私は行く人を見つけるのに苦労しています)通常は逆なので、Python から C++ に変換します)。以下は、コードを実行しようとする必要があるすべてのコードです (ただし失敗します)。任意の入力をいただければ幸いです。ありがとう!
#hello.pyx
def say_hello():
print "Hello World!"
#generate the c code
cython -a hello.pyx
#creates the shared library
gcc -shared -pthread -fPIC -fwrapv -O2 -Wall -fno-strict-aliasing -I/usr/include/python2.6 -o libhello.so hello.c
//temp.cpp
#include <iostream>
extern "C" {
void say_hello();
};
using namespace std;
int main(){
say_hello();
return 1;
};
#attempt to compile (this is where it fails)
g++ -I/usr/include/python2.6/ -lpython2.6 -L./ -lhello temp.cpp -o temp
エラーメッセージは次のとおりです。
/tmp/ccpKHOMl.o: In function main: temp.cpp:(.text+0x5): undefined reference to say_hello' /tmp/ccpKHOMl.o:
In function __static_initialization_and_destruction_0(int, int):
temp.cpp:(.text+0x33): undefined reference to std::ios_base::Init::Init()
temp.cpp:(.text+0x38): undefined reference to std::ios_base::Init::~Init()
collect2: ld returned 1 exit status