手动编译OpenSSL:制作共享对象时不能使用符号;用-fPIC重新编译
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手动编译OpenSSL:制作共享对象时不能使用符号;用-fPIC重新编译相关的知识,希望对你有一定的参考价值。
我的OpenSSL似乎太旧了。而且他们没有解释如何安装更新的OpenSSL库的地方。
openssl version -a
OpenSSL 1.0.1t 3 May 2016
built on: Fri Mar 30 13:47:53 2018
platform: debian-amd64
options: bn(64,64) rc4(16x,int) des(idx,cisc,16,int) blowfish(idx)
compiler: gcc -I. -I.. -I../include -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -m64 -DL_ENDIAN -DTERMIO -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wa,--noexecstack -Wall -DMD32_REG_T=int -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM
OPENSSLDIR: "/usr/lib/ssl"
当我想手动安装更新的OpenSSL库时,我收到此错误:
root@mycomputer:/local/install/openssl-1.0.2o# ./config --prefix=/usr/local/ssl --openssldir=/usr/local/ssl shared zlib
[...compile stuff...]
make[3]: Entering directory `/local/install/openssl-1.0.2o'
make[4]: Entering directory `/local/install/openssl-1.0.2o'
/usr/bin/ld: libcrypto.a(rsaz_exp.o): relocation R_X86_64_32 against `.rodata'
can not be used when making a shared object; recompile with -fPIC
libcrypto.a(rsaz_exp.o): could not read symbols: Bad value
collect2: error: ld returned 1 exit status
make[4]: *** [link_a.gnu] Error 1
make[4]: Leaving directory `/local/install/openssl-1.0.2o'
make[3]: *** [do_linux-shared] Error 2
make[3]: Leaving directory `/local/install/openssl-1.0.2o'
make[2]: *** [libcrypto.so.1.0.0] Error 2
make[2]: Leaving directory `/local/install/openssl-1.0.2o'
make[1]: *** [shared] Error 2
make[1]: Leaving directory `/local/install/openssl-1.0.2o/crypto'
make: *** [build_crypto] Error 1
答案
链接器错误:
/usr/bin/ld: libcrypto.a(rsaz_exp.o): relocation R_X86_64_32 against `.rodata'
can not be used when making a shared object; recompile with -fPIC
是说档案rsaz_exp.o
中的目标文件libcrypto.a
尚未编译为位置独立代码,它必须被链接到共享对象。它建议你用-fPIC
重新编译该目标文件。这意味着使用libcrypto.a
编译选项从源代码重建-fPIC
。
如果您不想这样做,请提供与共享libcrypto.so
链接的链接。
以上是关于手动编译OpenSSL:制作共享对象时不能使用符号;用-fPIC重新编译的主要内容,如果未能解决你的问题,请参考以下文章
重定位 R_X86_64_PC32 对符号 _ZTISt13runtime_error@@GLIBCXX_3.4 在制作共享对象时不能使用;使用 -fPIC 重新编译
重定位 R_X86_64_32S 对 `.data' 在制作共享对象时不能使用;使用 gcc 重新编译 -fPIC