-
-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathbuild-libssh2.sh
executable file
·68 lines (55 loc) · 1.67 KB
/
build-libssh2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/bin/bash
# <release> <dest_folder>
set -euo pipefail
build_folder=$2/build/$1
curr_dirname=$(dirname "$0")
mkdir -p $build_folder
mkdir -p $2/source
FORCE_REBUILD=${FORCE_REBUILD:-}
# @TODO We are explicitly checking the static lib
if [[ -f $build_folder/lib/libssh2.a ]] && [[ -z $FORCE_REBUILD || $FORCE_REBUILD != "true" ]]; then
echo "Skipping rebuild of libssh2 because lib file already exists"
exit 0
fi
if [ ! -d $2/source/$1 ]; then
$curr_dirname/download-and-unpack.sh \
https://github.com/libssh2/libssh2/releases/download/libssh2-$1/libssh2-$1.tar.gz $2
mv $2/libssh2-$1 $2/source/$1
cd $2/source/$1
autoreconf -fiv
else
cd $2/source/$1
if [ -f ./configure ]; then
make distclean || true;
else
autoreconf -fiv
fi
fi
CFLAGS=${CFLAGS:-}
# pthread below is only necessary for openssl 1.1.x from what I can tell
# however I see no harm on keeping in there for other versions
# Debug
# CFLAGS="-fPIC" LDFLAGS="-ldl -lpthread" ./configure \
# --with-openssl \
# --with-libssl-prefix=$OPENSSL_BUILD_FOLDER \
# --with-libz \
# --with-libz-prefix=$ZLIB_BUILD_FOLDER \
# --disable-shared \
# --enable-debug \
# --prefix=$build_folder
# Release - Static
CFLAGS="$CFLAGS -fPIC" LDFLAGS="-ldl -lpthread" ./configure \
--with-openssl \
--with-libssl-prefix=$OPENSSL_BUILD_FOLDER \
--with-libz \
--with-libz-prefix=$ZLIB_BUILD_FOLDER \
--disable-shared \
--prefix=$build_folder
# Release - Both
# CFLAGS="-fPIC" LDFLAGS="-ldl -lpthread" ./configure \
# --with-openssl \
# --with-libssl-prefix=$OPENSSL_BUILD_FOLDER \
# --with-libz \
# --with-libz-prefix=$ZLIB_BUILD_FOLDER \
# --prefix=$build_folder
make && make install