安装libmemcached时,gcc因退出状态1而失败

时间:2011-10-02 23:31:50

标签: python gcc libmemcache

在尝试按照http://code.google.com/p/python-libmemcached/处的python-libmemcached指令时,我在第3步遇到了麻烦(“python setup.py install”)

    (gigmash_venv)m:python-libmemcached matthewparrilla$ python setup.py build
    running build
    running build_py
    creating build
    creating build/lib.macosx-10.3-fat-2.7
    copying cmemcached.py -> build/lib.macosx-10.3-fat-2.7
    running build_ext
    building 'cmemcached_imp' extension
    creating build/temp.macosx-10.3-fat-2.7
    gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386 -g -O2 -DNDEBUG -g -O3 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c cmemcached_imp.c -o build/temp.macosx-10.3-fat-2.7/cmemcached_imp.o
    powerpc-apple-darwin9-gcc-4.0.1: cmemcached_imp.c: No such file or directory
    powerpc-apple-darwin9-gcc-4.0.1: no input files
    i686-apple-darwin9-gcc-4.0.1: cmemcached_imp.c: No such file or directory
    i686-apple-darwin9-gcc-4.0.1: no input files
    lipo: can't figure out the architecture type of: /var/folders/0o/0oHT3RmJF80rpIJtdbegzE+++TI/-Tmp-//cc9xQqQ6.out
    error: command 'gcc-4.0' failed with exit status 1

我接下来不知道这意味着什么或做什么。我在我的comp(4.0和4.2)上有多个版本的gcc,并且通过Google搜索得到了足够多的gcc,这可能很重要。完全失去了。

提前致谢。

[编辑:遵循@ phihag的指示]

我现在收到一个完全不同但仍然令人困惑的错误:

    (gigmash_venv)m:python-libmemcached matthewparrilla$ python setup.py build
    running build
    running build_py
    running build_ext
    building 'cmemcached_imp' extension
    gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386 -g -O2 -DNDEBUG -g -O3 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c cmemcached_imp.c -o build/temp.macosx-10.3-fat-2.7/cmemcached_imp.o
    cmemcached_imp.c:237:36:cmemcached_imp.c:237:36: error:  error: libmemcached/memcached.h: No such file or directory
    libmemcached/memcached.h: No such file or directory
    In file included from cmemcached_imp.c:238:
    split_mc.h:14: warning: ‘struct memcached_st’ declared inside parameter list
    split_mc.h:14: warning: its scope is only this definition or declaration, which is probably not what you want
    split_mc.h:17: warning: ‘struct memcached_st’ declared inside parameter list
    In file included from cmemcached_imp.c:238:
    split_mc.h:14: warning: ‘struct memcached_st’ declared inside parameter list
    (and this goes on for many many more lines)...

1 个答案:

答案 0 :(得分:4)

发生错误是因为文件cmemcached_imp.c不存在,但必须在此步骤中编译。

首先,编辑文件cmemcached_imp.pyx并修复第506行中的拼写错误。而不是

sys.stderr.write("[cmemcached]%s only support string: %s" % (cmd, key))

,应该说

sys.stderr.write("[cmemcached]%s only support string: %s" % (cmd, keys))

然后,安装cython并执行

$ cython cmemcached_imp.pyx

cython应该静默生成文件cmemcached_imp.c

虽然这可以解决即时错误,但您可能还需要替换

ext_modules=[Extension('cmemcached_imp',
            ['cmemcached_imp.pyx', 'split_mc.c'],
<{1>}中的

setup.py

回应编辑:

如果您逐字按照说明操作,则还需要在本地目录中安装libmemcached。执行

ext_modules=[Extension('cmemcached_imp',
            ['cmemcached_imp.c', 'split_mc.c'],

在python-libmemcached中实现。