【MT8516 - 02】OpenSSL交叉编译

1  下载源码

链接:https://www.openssl.org/source/openssl-1.0.2r.tar.gz

或者执行:

git clone git://git.openssl.org/openssl.git

2  配置

tar -zxvf openssl-1.0.2r.tar.gz
cd openssl-1.0.2r
/config --prefix=DIR no-asm
make
make install

其中:

1)--prefi=DIR:指定生成lib include bin目录的路径,DIR修改为自定义位置;

2)no-asm:在交叉编译过程中不使用汇编代码代码加速编译过程;

3)通过路径下INSTALL文件可以查看详细安装教程和安装选项;

3  注意事项

1)执行配置前需要先执行source执行,配置MT8516交叉编译环境(参考:【MT8516 - 01】MT8516交叉编译工具链配置过程);

2)执行make之前,需要修改两处Makefile的错误;

第一处:Makefile第63行,删除${CROSS_COMPILE}

CC= aarch64-poky-linux-gcc  -mcpu=cortex-a72.cortex-a53+crypto -mtune=cortex-a72.cortex-a53 --sysroot=/usr/local/oecore-x86_64/sysroots/aarch64-poky-linux

第二处:Makefile第64行,删除-m64

上述两处默认情况下,编译直接报错!

 

你可能感兴趣的:(MT8516)