交叉编译--OPENSSL 交叉编译
openssl
传输层安全性/安全套接层及其加密库
项目地址:https://gitcode.com/gh_mirrors/ope/openssl
免费下载资源
·
1、简介
项目中需要用到openssl第三方库,因此需要了解一下第三方库的交叉编译问题;
2、前提工作
- 正确的库版本
开始编译之前一定要确认正确的版本,用到的openssl的软件版本为openssl-1.0.2h.tar.gz,下载地址:https://www.openssl.org/source/openssl-1.0.2h.tar.gz;
3、编译流程
1) 解压
解压openssl-1.0.2h.tar.gz,解压openssl命令:tar -xzvf openssl-1.0.2h.tar.gz,解压后的文件夹为openssl-1.0.2h,进入到文件目录中;
2)配置Makefile
./Configure linux-generic32 no-shared no-asm —cross-compile-prefix=/opt/toolschain/ingenic/mips-gcc720-glibc229-r5.1.4/bin/mips-linux-gnu-
配置说明:
- linux-generic32:君正平台(这个一定要注意否则可能会有问题,是arm平台时,这个选项是: linux-armv4)
- no-shared:只编译静态库;
- —cross-compile-prefix=/opt/toolschain/ingenic/mips-gcc720-glibc229-r5.1.4/bin/mips-linux-gnu- :交叉编译工具链及其绝对路径,这个是t41的soc的工具链地址;
- no-asm: 在交叉编译过程中不使用汇编代码代码加速编译过程;
3)修改Makefile
CFLAG= -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -O3 -fomit-frame-pointer -muclibc -Wall
增加所链接的库文件,要不然可能会出现编译错误;
4)make depend
5)make
6)生成成果
libcrypto.a
libssl.a
4、config 和 Configure 的区别
Configure 需要指定平台信息,比如像上面那样直接指定是 arm 平台,则 Makefile 中也就不会出现 m64 选项,不需要像 config 那样再手动去修改 Makefile 脚本。而 config 则是自己去检测当前的系统环境,自动识别系统内核信息和编译器并设定参数等,然后将相关选项再传递给 Configure 脚本去完成最终配置。而交叉编译的时候基本就会存在问题,所有更推荐使用 Configure 方式来进行配置操作
GitHub 加速计划 / ope / openssl
20
1
下载
传输层安全性/安全套接层及其加密库
最近提交(Master分支:2 个月前 )
b85e6f53
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26250)
1 天前
3974058a
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26157)
1 天前
更多推荐
已为社区贡献1条内容
所有评论(0)