openssl 的编译(linux、Ubuntu) 和 交叉编译(arm、Hi3531A)的问题分析、解决

简介: openssl 的编译(linux、Ubuntu) 和 交叉编译(arm、Hi3531A)的问题分析、解决

一、编译环境及准备材料

1、编译环境:

1.1、Ubuntu环境 - ubuntu 14.04.1

$ uname -a
Linux ubuntu 4.4.0-128-generic #154~14.04.1-Ubuntu SMP Fri May 25 14:58:51 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

1.2、交叉编译

$ arm-hisiv100nptl-linux-gcc -v
Using built-in specs.
Target: arm-hisiv100-linux-uclibcgnueabi
Configured with: ../gcc-4.4-2010q1/configure --host=i486-linux-gnu --build=i486-linux-gnu --target=arm-hisiv100-linux-uclibcgnueabi 
--prefix=/home/sying/uclibc_h3/hisiv100_finalnptl_src/hisiv100_src/install/arm-hisiv100-linux 
...
...
Thread model: posix
gcc version 4.4.1 (Hisilicon_v100(gcc4.4-290+uclibc_0.9.32.1+eabi+linuxpthread)) 

2、openssl 源码

openssl 官网源码下载

openssl有提供旧版本源码下载,我这里下载的是 openssl-1.1.0l.tar.gz


二、Ubuntu下编译openssl

在Ubuntu下编译,没有遇到报错的地方,只需要配置好输出目录即可。

将源码压缩包/home/samba/openssl/ 目录后,解压并创建 ssl_result_ubuntu 用来存放编译结果,进入源码目录执行 config 文件生成Makefile,用 --prefix 来指定openssl的安装目录,然后直接编译,过程如下:

ubuntu:/home/samba/openssl$ tar zxf openssl-1.1.0l.tar.gz 
ubuntu:/home/samba/openssl$ mkdir ssl_result_ubuntu
ubuntu:/home/samba/openssl$ cd openssl-1.1.0l/
ubuntu:/home/samba/openssl/openssl-1.1.0l$ ./config --prefix=/home/samba/openssl/ssl_result_ubuntu
ubuntu:/home/samba/openssl/openssl-1.1.0l$ make
ubuntu:/home/samba/openssl/openssl-1.1.0l$ make install
ubuntu:/home/samba/openssl/openssl-1.1.0l$ ls ../ssl_result_ubuntu/
bin  include  lib  share  ssl

三、交叉编译 openssl

1、配置、编译

交叉编译过程中出现比较多问题,问题集中在执行 config 生成 Makefile 的过程中,下面列出问题及解决方案。

将源码压缩包/home/samba/openssl/ 目录后,解压并创建 ssl_result_3531A 用来存放编译结果,进入源码目录执行 config 文件生成Makefile,用 --prefix 来指定 openssl 的安装目录,然后再使用 --cross-compile-prefix 来指定交叉编译工具前缀,接着编译出现错误,过程如下:

ubuntu:/home/samba/openssl$ tar zxf openssl-1.1.0l.tar.gz 
ubuntu:/home/samba/openssl$ mkdir ssl_result_3531A
ubuntu:/home/samba/openssl$ cd openssl-1.1.0l/
ubuntu:/home/samba/openssl/openssl-1.1.0l$ ./config --prefix=/home/samba/openssl/ssl_result_3531A --cross-compile-prefix=arm-hisiv100nptl-linux-
ubuntu:/home/samba/openssl/openssl-1.1.0l$ make
...
PIC -DOPENSSL_USE_NODELETE -c -o crypto/aes/aes-x86_64.o crypto/aes/aes-x86_64.s
crypto/aes/aes-x86_64.s: Assembler messages:
crypto/aes/aes-x86_64.s:2: Error: unrecognized symbol type ""
crypto/aes/aes-x86_64.s:3: Error: alignment too large: 15 assumed
crypto/aes/aes-x86_64.s:5: Error: bad instruction `xorl 0(%r15),%eax'
crypto/aes/aes-x86_64.s:6: Error: bad instruction `xorl 4(%r15),%ebx'
crypto/aes/aes-x86_64.s:7: Error: bad instruction `xorl 8(%r15),%ecx'
...

2、分析问题,加 no-asm 配置选项

问题分析:从错误打印看到,错误出现在编译 .s 文件(汇编文件)时,且后面还打印了汇编代码。原来 openssl 在编译时会默认使用汇编代码来加速编译过程,但只针对 x86平台,而 x86平台 的汇编代码和 arm平台 的汇编代码是不同的,所以会报错。

解决方案:执行 config 时,加上 no-asm 表示不使用汇编代码加速编译。

继续编译:重新生成 Makefiel,重新编译,出现错误,过程如下:

ubuntu:/home/samba/openssl/openssl-1.1.0l$ ./config no-asm --prefix=/home/samba/openssl/ssl_result_3531A --cross-compile-prefix=arm-hisiv100nptl-linux-
ubuntu:/home/samba/openssl/openssl-1.1.0l$ make clean && make 
省略无关打印...
F crypto/aes/aes_cbc.d.tmp -MT crypto/aes/aes_cbc.o -c -o crypto/aes/aes_cbc.o crypto/aes/aes_cbc.c
cc1: error: unrecognized command line option "-m64"
make[1]: *** [crypto/aes/aes_cbc.o] Error 1
省略无关打印...

3、分析问题,删除 Makefile 的 -m64

问题分析:错误打印表示 "-m64" 无法识别。查资料得知,-m64是x86 64位应用编译选项,m64选项设置int为32 bits及long指针为64 bits,为AMD的x86 64架构生成代码。所以,在arm平台无法支持。

解决方案:删除 Makefile 的两处 -m64,可以使用下面命令删除,也可以打开Makefile,搜索删除。

sed -i 's/-m64//' Makefile

继续编译:修改 Makefile 后,重新编译,出现错误如下:

./libcrypto.so: undefined reference to `getcontext'
./libcrypto.so: undefined reference to `setcontext'
./libcrypto.so: undefined reference to `makecontext'

4、分析问题,加 no-async 配置选项,编译通过

问题分析:查资料得知,这个错误是编译时缺少 ucontext 库(ucontext提供的四个函数getcontext、setcontext、makecontext、swapcontext、可以在一个进程中实现用户级的线程切换)。海思3531A平台的交叉编译工具没有提供GNU C的 ucontext 库,所以出错。

解决方案:执行 config 时,加上 no-async,不使用 ucontext 库

继续编译:加上 no-async,重新生成Makefile,编译通过,过程如下:

ubuntu:/home/samba/openssl/openssl-1.1.0l$ ./config no-asm no-async --prefix=/home/samba/openssl/ssl_result_3531A --cross-compile-prefix=arm-hisiv100nptl-linux-
ubuntu:/home/samba/openssl/openssl-1.1.0l$ sed -i 's/-m64//' Makefile
ubuntu:/home/samba/openssl/openssl-1.1.0l$ make clean && make && make install
ubuntu:/home/samba/openssl/openssl-1.1.0l$ ls ../ssl_result_3531A/
bin  include  lib  share  ssl

到此,编译完成,在指定的安装目录下,生成了对应的头文件和库文件。

另外,关于 openssl 的配置选项 no-asm、no-async,在上文已经讲清楚了,而对其他配置选项感兴趣的可以查看 openssl编译参数选项

如果文章能解决你的问题,留个赞让我知道一下 ^_^

目录
相关文章
|
1月前
|
Ubuntu 应用服务中间件 nginx
Ubuntu安装笔记(三):ffmpeg(3.2.16)源码编译opencv(3.4.0)
本文是关于Ubuntu系统中使用ffmpeg 3.2.16源码编译OpenCV 3.4.0的安装笔记,包括安装ffmpeg、编译OpenCV、卸载OpenCV以及常见报错处理。
141 2
Ubuntu安装笔记(三):ffmpeg(3.2.16)源码编译opencv(3.4.0)
|
24天前
|
Ubuntu 编译器 计算机视觉
Ubuntu系统编译OpenCV4.8源码
【10月更文挑战第17天】只要三步即可搞定,第一步是下载指定版本的源码包;第二步是安装OpenCV4.8编译需要的编译器与第三方库支持;第三步就是编译OpenCV源码包生成安装文件并安装。
|
1月前
|
并行计算 Ubuntu Linux
Ubuntu学习笔记(三):Linux下操作指令大全
Ubuntu学习笔记,介绍了Linux操作系统中常用的命令和操作,如文件管理、系统信息查看、软件安装等。
46 3
|
1月前
|
Ubuntu Shell API
Ubuntu 64系统编译android arm64-v8a 的openssl静态库libssl.a和libcrypto.a
Ubuntu 64系统编译android arm64-v8a 的openssl静态库libssl.a和libcrypto.a
|
1月前
|
Ubuntu Linux 网络安全
如何在Ubuntu 22.04或20.04 Linux上安装MobaXterm
虽然直接在Ubuntu 22.04或20.04上安装MobaXterm是不可能的任务,因为它是专为Windows设计的,但Ubuntu系统提供了丰富的原生工具和替代方案,足以满足远程管理、文件传输等需求。如果你对MobaXterm的特定功能有强烈需求,考虑采用Windows子系统或虚拟机方案作为折衷方案,不失为一种可行之道。在追求高效工作流的同时,不妨也探索和熟悉Linux原生工具,它们往往能提供更为无缝的集成体验。
681 0
|
2月前
|
Ubuntu 编译器 C语言
Ubuntu 源码编译指定版本 make:神秘代码背后的激情冒险,等你来战!
【9月更文挑战第8天】在Ubuntu中,编译指定版本的源码`make`是一项挑战但也极具价值的任务。它允许我们根据特定需求定制软件,提升性能与功能适配。首先需安装必要工具包如GCC等;接着下载所需源码并阅读相关文档以了解编译要求。通过运行`./configure`、`make`及`sudo make install`命令完成编译安装流程。过程中可能遇到依赖项缺失或编译选项设置不当等问题,需根据错误提示逐一解决。对于大型项目,可利用多核编译加快速度。掌握这一技能有助于更好地探索开源世界。
45 2
|
2月前
|
Ubuntu Linux 开发工具
ubuntu linux搭建lvgl
ubuntu linux搭建lvgl
80 6
|
3月前
|
机器学习/深度学习 Ubuntu Linux
【机器学习 Azure Machine Learning】使用Aure虚拟机搭建Jupyter notebook环境,为Machine Learning做准备(Ubuntu 18.04,Linux)
【机器学习 Azure Machine Learning】使用Aure虚拟机搭建Jupyter notebook环境,为Machine Learning做准备(Ubuntu 18.04,Linux)
|
2月前
|
Ubuntu NoSQL Linux
在Ubuntu上用Qemu模拟ARM版本的Fedora39
在Ubuntu上用Qemu模拟ARM版本的Fedora39
|
2月前
|
Ubuntu
编译ubuntu内核
编译ubuntu内核