From a581937eb7142e23a80780bd31427d3b0deb50a6 Mon Sep 17 00:00:00 2001 From: xiaoming <2014500726@smail.xtu.edu.cn> Date: Wed, 22 Nov 2023 21:06:25 +0800 Subject: [PATCH] Update build_libssh2.sh configuration Signed-off-by: xiaoming <2014500726@smail.xtu.edu.cn> --- depend/build_libssh2.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/depend/build_libssh2.sh b/depend/build_libssh2.sh index c39e7f12..7e52bb75 100755 --- a/depend/build_libssh2.sh +++ b/depend/build_libssh2.sh @@ -6,7 +6,7 @@ SHELL_FOLDER=$(cd "$(dirname "$0")";pwd) cd $SHELL_FOLDER tar -xzvf openssl-3.1.4.tar.gz cd $SHELL_FOLDER/openssl-3.1.4 -./config --prefix=$SHELL_FOLDER/output --openssldir=$SHELL_FOLDER/output +./config --prefix=$SHELL_FOLDER/output --openssldir=$SHELL_FOLDER/output no-threads no-static make -j16 make install rm -rf $SHELL_FOLDER/openssl-3.1.4 @@ -14,7 +14,7 @@ rm -rf $SHELL_FOLDER/openssl-3.1.4 cd $SHELL_FOLDER tar -xzvf libssh2-1.11.0.tar.gz cd $SHELL_FOLDER/libssh2-1.11.0 -./configure --prefix=$SHELL_FOLDER/output --enable-shared --disable-static --without-libz --with-openssl --with-libssl-prefix=$SHELL_FOLDER/output +./configure --prefix=$SHELL_FOLDER/output --enable-shared --disable-static --without-libz --with-openssl=$SHELL_FOLDER/output make -j16 make install rm -rf $SHELL_FOLDER/libssh2-1.11.0