【问题标题】:Build libcurl for arm-linux-gnueabi: Why curl ignores openssl?为 arm-linux-gnueabi 构建 libcurl:为什么 curl 忽略 openssl?
【发布时间】:2019-04-17 17:03:16
【问题描述】:

1。构建openssl

git clone https://github.com/openssl/openssl.git -b OpenSSL_1_1_1-stable --depth 1 openssl-1.1.1
cd openssl-1.1.1
./Configure --prefix=/usr linux-generic32 shared  \
      --cross-compile-prefix=arm-linux-gnueabihf-
make depend -j7
make -j7
make DESTDIR=/Volumes/lpd-dev/armhf/ install_sw install_ssldirs

2。构建卷曲

git clone https://github.com/curl/curl.git -b curl-7_64_1 --depth 1 curl-7.64.1
cd curl-7.64.1
./buildconf
./configure --host=arm-linux-gnueabihf --prefix=/usr --with-ssl=/Volumes/lpd-dev/armhf/usr

这个输出:

...
configure: PKG_CONFIG_LIBDIR will be set to "/Volumes/lpd-
dev/armhf/usr/lib/pkgconfig"
checking for arm-linux-gnueabihf-pkg-config... /usr/bin/pkg-config
checking for openssl options with pkg-config... found
configure: pkg-config: SSL_LIBS: "-lssl -lcrypto"
configure: pkg-config: SSL_LDFLAGS: ""
configure: pkg-config: SSL_CPPFLAGS: ""
checking for HMAC_Update in -lcrypto... no
checking for HMAC_Init_ex in -lcrypto... no
checking OpenSSL linking with -ldl... no
checking OpenSSL linking with -ldl and -lpthread... no
configure: WARNING: SSL disabled, you will not be able to use HTTPS, FTPS, NTLM and more.
configure: WARNING: Use --with-ssl, --with-gnutls, --with-polarssl, --with-cyassl, --with-nss, --with-schannel, --with-secure-transport, --with-mesalink or --with-amissl to address this.
...

已找到 pkgconfig,但警告:SSL 已禁用

【问题讨论】:

    标签: curl openssl


    【解决方案1】:

    在写问题的过程中,我重读了更多./configure 的输出,并理解“/Volumes/lpd-dev/armhf/usr/lib/pkgconfig”指向--prefix=/usr,但由于我们是交叉编译点到错误的位置!

    只需移动或删除.../armhf/usr/lib/pkgconfig 已解决的问题。

        ...
    curl version:     7.64.1-DEV
    SSL:              enabled (OpenSSL)
    SSH:              no      (--with-libssh2)
        ...
    

    【讨论】:

    • 感谢您的分享!我遇到了同样的问题,但我不知道你修改了什么来解决这个问题——你对“简单地移动或删除 .../armhf/usr/lib/pkgconfig 已解决的问题”是什么意思。 ?
    猜你喜欢
    • 2015-12-20
    • 1970-01-01
    • 2017-05-23
    • 1970-01-01
    • 2012-11-27
    • 1970-01-01
    • 2016-02-08
    • 1970-01-01
    相关资源
    最近更新 更多