openssl交叉编译
- [Chapter1 openssl交叉编译](#Chapter1 openssl交叉编译)
Chapter1 openssl交叉编译
1、openssl源码包下载
http://ftp.openssl.org/source/
http://distfiles.macports.org/openssl/
2、Ubuntu编译与安装openssl
bash
# openssl库默认安装路径为:/usr/local/ssl/lib
tar zxvf openssl-1.1.1t.tar.gz
cd openssl-1.1.1t.tar.gz
./config -shared
make
sudo make install
3、交叉编译
执行下面的命令配置工程
bash
./config no-asm shared no-async --prefix=$(pwd)/install --cross-compile-prefix=arm-linux-
参数说明
no-asm: 在交叉编译过程中不使用汇编代码代码加速编译过程;
shared: 生成动态连接库。
no-async: 交叉编译工具链没有提供GNU C的ucontext库
--prefix=: 安装路径
--cross-compile-prefix=: 交叉编译工具
注意:打开Makefile,删除里面所有的-m64和-m32编译选项。
执行完config后,会在build下生成很多文件,打开其中的Makefile,找到"-m64"并删除,否则下一步会遇到错误:
bash
aarch64-buildroot-linux-gnu-gcc.br_real: error: unrecognized command line option '-m64'
编译安装
bash
make
make install