在Mac OS X上,由于链接器错误“非法文本重定位”,easy_install结构和/或easy_install pycrypto失败
发布于 2021-01-29 17:24:34
尝试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
被浏览
45
1 个回答
-
我使用的是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