3

在尝试easy_installfabric(或easy_installpycrypto依赖于哪个结构)时,我在 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
4

1 回答 1

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
于 2012-12-18T16:23:03.453 回答