我正在尝试使用python-dev api,但我遇到了一些问题。
这是我正在尝试编译的代码
#include <stdio.h>
#include <signal.h>
#include <unistd.h>
#include <Python.h>
int
main(int argc, char *argv[])
{
Py_SetProgramName(argv[0]); /* optional but recommended */
Py_Initialize();
PyRun_SimpleString("from time import time,ctime\n"
"print 'Today is',ctime(time())\n");
Py_Finalize();
return 0;
}
使用
gcc -c test.c `python-config --cflags`
首先,我在我的(OSX 10.9)计算机上安装了python 2.7.8。
当我运行python-config --cflags
时,我得到了这个输出:
-I/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6 -I/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6 -fno-strict-aliasing -fno-common -dynamic -arch ppc -arch i386 -g -O2 -DNDEBUG -g -O3
所以出于某种原因,即使我有python 2.7.8,python-dev api也是python 2.6。我尝试重新安装python,但这对我没有好处。
其次,由于某种原因,python试图将powerpc和i386架构与-arch ppc -arc i386
一起使用,但我用python-config --cflags | sed -e 's/-arch\ .*\ //g
修复了。
但即使我成功编译了我的代码,链接器仍然从python-dev获得奇怪的架构代码:
gcc test.o -o test `python-config --ldlags`
ld: warning: ignoring file /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/config/libpython2.6.dylib, missing required architecture x86_64 in file /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/config/libpython2.6.dylib (2 slices)
Undefined symbols for architecture x86_64:
"_PyRun_SimpleStringFlags", referenced from:
_main in test.o
"_Py_Finalize", referenced from:
_main in test.o
"_Py_Initialize", referenced from:
_main in test.o
"_Py_SetProgramName", referenced from:
_main in test.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
在Homebrew github page我发现了这个:
ld:警告:忽略文件 /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/config/libpython2.6.dylib, 缺少文件中所需的体系结构x86_64 /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/config/libpython2.6.dylib (2片)看起来你已经安装了32位版本的Python - 可能是PowerPC / i386。由于您有64位计算机,因此您需要使用默认Python来获得64位组件。
但他们从未解释过如何做到这一点。
如何让API工作?
UPDATE - 使用cflags进行编译可以删除被忽略的文件,但仍然会给我未定义的符号:
gcc test.o -o test `python-config --cflags --ldflags | sed -e 's/-arch\ .*\ //g' | sed -e 's/Versions\/2\.6/Versions\/Current/g'`
Undefined symbols for architecture x86_64:
"_PyRun_SimpleStringFlags", referenced from:
_main in test.o
"_Py_Finalize", referenced from:
_main in test.o
"_Py_Initialize", referenced from:
_main in test.o
"_Py_SetProgramName", referenced from:
_main in test.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
UPDATE - 问题是我的机器中的/usr/local/Cellar/Frameworks
安装了python,但由于某种原因,python-config仍然认为它在/Library/Frameworks
中。
所以现在真正的问题是:如何更改python-config的路径?
我的PYTHONPATH env变量是正确的,所以我不知道为什么它没有改变。
答案 0 :(得分:0)
您只传递编译器标志。也传递链接器标志。否则,库符号将不会链接:
gcc -c test.c `python-config --cflags --ldflags`
要解决未定义的符号问题,python-config可能使用了错误的解释器。在which python-config
打开python-config(它是一个普通的python文件)并检查第一行是否有类似#!/Library/Frameworks/Python.framework/Versions/2.6/bin/python2.6
的内容
如果它没有指向正确的解释器,请将其更改为正确的路径。