尝试easy_install
fabric
(或easy_install
pycrypto
(结构所依赖的)时,我在Mac OS X上遇到以下链接器错误:
ld: illegal text-relocation to ___gmp_binvert_limb_table in /usr/local/lib/libgmp.a(mp_minv_tab.o) from ___gmpn_divexact_1 in /usr/local/lib/libgmp.a(dive_1.o) for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: Setup script exited with error: command 'clang' failed with exit status 1
答案 0 :(得分:2)
我使用的是python的自定义安装,显然与我的标准安装libGMP不兼容。从源代码构建libGMP(在我自己的前缀位置,由我的特殊python安装使用)修复了问题。
$ bunzip2 gmp-5.0.5.tar.bz2
$ tar -xf gmp-5.0.5.tar
$ cd gmp-5.0.5
$ ./configure --prefix=/path/to/my/special/prefix
$ make
$ make check
$ make install
$ easy_install pycrypto
$ easy_install fabric