我试图从Linux(Debian Jessie)为Windows进行交叉编译。我已编译zlib
和OpenSSL
并且cURL的配置脚本确实找到了库,但它仍然说已关闭SSL支持。
这是我使用的构建脚本:
# ZLIB
cd /builds
curl -O -J http://www.zlib.net/zlib-1.2.11.tar.gz
tar xf zlib-1.2.11.tar.gz
cd /builds/zlib-1.2.11
CC=x86_64-w64-mingw32-gcc ./configure --prefix=/usr/x86_64-w64-mingw32 --static
make && make install
# OPENSSL
cd /builds
curl -O -J https://www.openssl.org/source/openssl-1.1.0c.tar.gz
tar xf openssl-1.1.0c.tar.gz
cd /builds/openssl-1.1.0c
CROSS_COMPILE="x86_64-w64-mingw32-" ./Configure -DHAVE_STRUCT_TIMESPEC -lz -lws2_32 zlib mingw64 no-shared --prefix=/usr/x86_64-w64-mingw32
make depend
make && make install
# CURL
cd /builds
curl -O -J https://curl.haxx.se/download/curl-7.52.1.tar.gz
cd /builds/curl-7.52.1
./configure --prefix=/usr/x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --enable-optimize --with-ssl=/usr/x86_64-w64-mingw32
它成功找到了库,但由于缺少--with-ssl
checking whether to enable Windows native SSL/TLS (Windows native builds only)... no
checking whether to enable Apple OS native SSL/TLS... no
checking for gdi32... yes
configure: PKG_CONFIG_LIBDIR will be set to "/usr/x86_64-w64-mingw32/lib/pkgconfig"
checking for x86_64-w64-mingw32-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: "-L/usr/x86_64-w64-mingw32/lib "
configure: pkg-config: SSL_CPPFLAGS: "-I/usr/x86_64-w64-mingw32/include "
checking for HMAC_Update in -lcrypto... no
checking for HMAC_Init_ex in -lcrypto... no
checking for ssl_version in -laxtls... 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-axtls, --with-winssl, or --with-darwinssl to address this.
checking default CA cert bundle/path... configure: WARNING: skipped the ca-cert path detection when cross-compiling
no
checking whether to use builtin CA store of SSL library... no
答案 0 :(得分:1)
要使用ssl支持交叉编译curl,我直接在CPP_FLAGS
和LD_FLAGS
中提供了该位置,而不是提供--with-ssl
的路径:
export DESTDIR="$CURL_INSTALL_DIR"
export CPPFLAGS="-I${OPENSSL_INSTALL_DIR}/include -I${ZLIB_INSTALL_DIR}/include"
export LDFLAGS="-L${OPENSSL_INSTALL_DIR}/lib -L${ZLIB_INSTALL_DIR}/lib"
export LIBS="-lssl -lcrypto"
CURL_ARGS="--with-ssl --with-zlib --disable-ftp --disable-gopher
--disable-file --disable-imap --disable-ldap --disable-ldaps
--disable-pop3 --disable-proxy --disable-rtsp --disable-smtp
--disable-telnet --disable-tftp --without-gnutls --without-libidn
--without-librtmp --disable-dict"
chmod 777 buildconf
./buildconf
./configure --host="${CROSS_COMPILE}" $CURL_ARGS
make -j16
make install
答案 1 :(得分:0)
我也花了整整一周的时间才为 cURL 启用 SSL。
从您的配置日志中,您需要启用这 2 行以 yes
checking for HMAC_Update in -lcrypto... no
checking for HMAC_Init_ex in -lcrypto... no
问题在于 OpenSSL 的构建方式。就我而言,我通过添加 -fPIC -ldl
如下
#For OpenSSL 1.0.2s
export USING_OPENSSL=./openssl-1.0.2s
export CROSS_COMPILE_PREFIX=mips-unknown-linux-uclibc-
export SSL_OPTIONS="enable-ssl-trace enable-shared enable-ssl enable-ssl2 enable-ssl3 enable-ssl3-method enable-
tls enable-tls1_1 enable-tls1_2 enable-weak-ssl-ciphers enable-unit-test enable-async enable-md2"
cd $USING_OPENSSL && CC=gcc AR=ar RANLIB=ranlib LD=ld ./Configure linux-mips32 -fPIC -ldl --openssldir=$USING_OPENSSL/OPSSL --prefix=$USING_OP
ENSSL/OPSSL --cross-compile-prefix=$CROSS_COMPILE_PREFIX $SSL_OPTIONS
make -C $USING_OPENSSL;
make install -C $USING_OPENSSL;
如果链接器 undefined reference to 'TLS_DTPREL_VALUE'
有错误,请参阅链接 https://codeleading.com/article/82492718270/,链接上的修复可能不适用于您的 OpenSSL,您必须修改它以适合您的 OpenSSL 版本。
对于我的 OpenSSL 1.0.2s,构建目标是不同的,所以需要修改如下:
@echo Patch Makefile
sed -i -e 's/build_all:.*/build_all: build_libs/g' $USING_OPENSSL/Makefile
sed -i -e 's/build_libs:.*/build_libs: build_libcrypto build_libssl build_engines openssl.pc/g' $USING_OPENSSL/Makefile
sed -i -e 's/DIRS= crypto ssl engines.*/DIRS= crypto ssl engines/g' $USING_OPENSSL/Makefile
对于 cURL v7.48.0,我不得不在 autoreconf
之前运行 ./configure
,因为在识别 configuration.ac 的 -ldl
方面存在一些问题。
cd $APP_CURL_DIR && autoreconf && LIBS="-ldl -lpthread" ./configure --prefix=$APP_CURL_DIR/curl --target=$COMPILE_TOOLCHAIN --host=$HOST CC
=mips-unknown-linux-uclibc-gcc --with-ssl=$USING_OPENSSL/OPSSL --enable-static
构建脚本是从 Makefile 中复制的,因此如果您的环境中有任何部分不可用,只需修改它以适合您的目标。
最后,在编译 cURL 时,如果您遇到 OpenSSL 标头存在但无法像 example code below 那样编译的问题。也许您不需要修改 configure.ac
,请先尝试 autoconf
或 autoreconf
,然后像我上面发布的那样使用 -ldl
选项运行 ./configure。
configure: WARNING: pi.h: present but cannot be compiled
configure: WARNING: pi.h: check for missing prerequisite headers?
configure: WARNING: pi.h: see the Autoconf documentation
configure: WARNING: pi.h: section "Present But Cannot Be Compiled"
configure: WARNING: pi.h: proceeding with the compiler's result
configure: WARNING: ## -------------------------------------- ##
configure: WARNING: ## Report this to bug-example@example.org ##
configure: WARNING: ## -------------------------------------- ##