arm交叉编译curl

环境:Ubuntu-16.04-32位

交叉编译工具:gcc-linaro-6.3.1-2017.05-i686_arm-linux-gnueabihf

编译OpenSSL

下载OpenSSL:https://www.openssl.org/source/

我使用的版本:openssl-1.1.0l

./config no-asm shared no-async prefix=/usr/local/openssl-arm --cross-compile-prefix=arm-linux-gnueabihf-
make
make install

编译CURL

下载curl:https://curl.haxx.se/download.html

我使用的版本:curl-7.52.1

./configure --prefix=/usr/local/curl-arm/ --host=arm-linux-gnueabihf CC=arm-linux-gnueabihf-gcc --without-nss --with-ssl=/usr/local/openssl-arm --enable-shared
make
make install

 

问题(未解决):
curl配置选项–with-ssl未生效?

参考:
Ubuntu arm 交叉编译环境搭建 – 远方的枸杞 (lizhongyi.com)