-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild_static_ss.sh
336 lines (272 loc) · 9.08 KB
/
build_static_ss.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#!/bin/bash
red="\033[0;31m"
green="\033[0;32m"
plain="\033[0m"
PCRE_VER="8.44"
PCRE_FILE="https://ftp.pcre.org/pub/pcre/pcre-$PCRE_VER.tar.gz"
MBEDTLS_VER=2.16.5
MBEDTLS_FILE="https://tls.mbed.org/download/mbedtls-$MBEDTLS_VER-gpl.tgz"
LIBSODIUM_VER=1.0.18
LIBSODIUM_FILE="https://download.libsodium.org/libsodium/releases/libsodium-$LIBSODIUM_VER.tar.gz"
LIBEV_VER=4.31
LIBEV_FILE="http://dist.schmorp.de/libev/libev-$LIBEV_VER.tar.gz"
LIBC_ARES_VER=1.14.0
LIBC_ARES_FILE="https://c-ares.haxx.se/download/c-ares-$LIBC_ARES_VER.tar.gz"
SHADOWSOCKS_LIBEV_VER=3.3.4
SHADOWSOCKS_LIBEV_FILE="https://github.com/shadowsocks/shadowsocks-libev"
UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
res=false
# as_fn_executable_p FILE
# -----------------------
# Test if FILE is an executable regular file.
as_fn_executable_p ()
{
test -f "$1" && test -x "$1"
}
as_test_x='test -x'
test_file(){
PATH_SEPARATOR=:
local IFS=$PATH_SEPARATOR
for path in $PATH;do
if as_fn_executable_p $path/$1;then
res=true;
break
else
res=false
fi
done
}
prepare() {
set_cc_for_build='
trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
: ${TMPDIR=/tmp} ;
{ tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
{ test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
{ tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
{ echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
dummy=$tmp/dummy ;
tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
CC_FOR_BUILD=$compiler ; set_cc_for_build= ;'
#
# Detect the libc used by compiler
#
case "$UNAME_SYSTEM" in
Linux|GNU|GNU/*)
# If the system lacks a compiler, then just pick glibc.
# We could probably try harder.
LIBC=gnu
eval "$set_cc_for_build"
cat <<-EOF > "$dummy.c"
#include <features.h>
#if defined(__UCLIBC__)
LIBC=uclibc
#elif defined(__dietlibc__)
LIBC=dietlibc
#else
LIBC=gnu
#endif
EOF
eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`"
{
res=$($CC_FOR_BUILD -v 2>&1 | grep COLLECT_GCC | grep musl)
[[ -n $res ]] && LIBC=musl
}
if test -n $LIBC;then
echo -e "${green}$compiler with c library : $LIBC${plain}"
else
echo "${red}UNKNOW LIBC${plain}";
exit 1;
fi
;;
esac
rm -rf $cur_dir/build_src && mkdir $cur_dir/build_src
[[ $? != 0 ]] && exit 1;
rm -rf $prefix && mkdir $prefix
[[ $? != 0 ]] && exit 1;
}
compile_pcre() {
[ -d $prefix/pcre ] && return
cd $cur_dir/build_src
$proxychains wget --no-check-certificate $PCRE_FILE
test $? != 0 && exit 1;
tar xvf pcre-$PCRE_VER.tar.gz
cd pcre-$PCRE_VER
CPPFLAGS="-DNEED_PRINTF" ./configure --prefix=$prefix/pcre --host=$host --enable-jit --enable-utf8 --enable-unicode-properties --disable-shared
make -j2 && make install
}
compile_mbedtls() {
[ -d $prefix/mbedtls ] && return
cd $cur_dir/build_src
$proxychains wget --no-check-certificate $MBEDTLS_FILE
test $? != 0 && exit 1;
tar xvf mbedtls-$MBEDTLS_VER-gpl.tgz
cd mbedtls-$MBEDTLS_VER
prefix_reg=$(echo $prefix | sed "s/\//\\\\\//g")
sed -i "s/DESTDIR=\/usr\/local/DESTDIR=$prefix_reg\/mbedtls/g" Makefile
CC=$host-gcc AR=$host-gcc-ar LD=$host-ld make install -j2
}
compile_libsodium() {
[ -d $prefix/libsodium ] && return
cd $cur_dir/build_src
$proxychains wget --no-check-certificate $LIBSODIUM_FILE
test $? != 0 && exit 1;
tar xvf libsodium-$LIBSODIUM_VER.tar.gz
cd libsodium-$LIBSODIUM_VER
./configure --prefix=$prefix/libsodium --host=$host --disable-ssp --disable-shared
CC=$host-gcc AR=$host-gcc-ar LD=$host-ld make -j2 && CC=$host-gcc AR=$host-gcc-ar LD=$host-ld make install
}
compile_libev() {
[ -d $prefix/libev ] && return
cd $cur_dir/build_src
$proxychains wget --no-check-certificate $LIBEV_FILE
test $? != 0 && exit 1;
tar xvf libev-$LIBEV_VER.tar.gz
cd libev-$LIBEV_VER
./configure --prefix=$prefix/libev --host=$host --disable-shared
CC=$host-gcc AR=$host-gcc-ar LD=$host-ld make -j2 && CC=$host-gcc AR=$host-gcc-ar LD=$host-ld make install
}
compile_libc_ares() {
[ -d $prefix/libc-ares ] && return
cd $cur_dir/build_src
$proxychains wget --no-check-certificate $LIBC_ARES_FILE
test $? != 0 && exit 1;
tar xvf c-ares-$LIBC_ARES_VER.tar.gz
cd c-ares-$LIBC_ARES_VER
./configure --prefix=$prefix/libc-ares --host=$host --disable-shared
CC=$host-gcc AR=$host-gcc-ar LD=$host-ld make -j2 && CC=$host-gcc AR=$host-gcc-ar LD=$host-ld make install
}
compile_shadowsocks_libev() {
[ -f $prefix/shadowsocks-libev/bin/ss-local ] && return
cd $cur_dir/build_src
$proxychains git clone --branch v$SHADOWSOCKS_LIBEV_VER --single-branch --depth 1 $SHADOWSOCKS_LIBEV_FILE
test $? != 0 && exit 1;
cd shadowsocks-libev
$proxychains git submodule update --init --recursive
test $? != 0 && exit 1;
./autogen.sh
LDFLAGS="--static -L$prefix/libc-ares/lib -L$prefix/libev/lib" CFLAGS="-I$prefix/libc-ares/include -I$prefix/libev/include" ./configure --prefix=$prefix/shadowsocks-libev --host=$host --disable-ssp --disable-documentation --with-mbedtls=$prefix/mbedtls --with-pcre=$prefix/pcre --with-sodium=$prefix/libsodium
test $? != 0 && exit 1;
CC=$host-gcc AR=$host-gcc-ar LD=$host-ld make -j2 && CC=$host-gcc AR=$host-gcc-ar LD=$host-ld make install
test $? != 0 && exit 1;
}
clean() {
cd $cur_dir
rm -rf $cur_dir/build_src
}
check_targethost(){
targethost_err_msg="Suppert auto download toolchains for host: \n
${green}\n
- aarch64-linux-musl \n
- aarch64-buildroot-linux-uclibc \n
- arm-linux-musleabi \n
${plain}
\n
But your host is $host
"
{
[[ $host = "aarch64-linux-musl" ]] ||
[[ $host = "aarch64-buildroot-linux-uclibc" ]] ||
[[ $host = "arm-linux-musleabi" ]]
} && echo -e "${green}Target host is $host${plain}" || {
echo -e "${red}Unknow target host${plain}"
echo -e $targethost_err_msg
exit 1
}
}
main(){
cur_dir="$(cd "$(dirname "$0")" && pwd)"
requir_bin="sed cut find make git"
for prog in $requir_bin;do
test_file $prog
if [ $res = "true" ];then
echo "Found $prog";
else
echo Cannot found $prog && exit 1;
fi
done
: ${prefix=$cur_dir/build_library} ;
while [ ! -z $1 ]; do
case $1 in
-h | --help)
echo "Useage: sh $0 [--host=<host>] [--prefix=<path>]"
echo ""
echo "Options:"
echo " --host=<host> the machine that you are building for"
echo " --prefix=<path> install architecture-independent files in $prefix"
exit 0;;
--host )
shift
host=$1;;
--host=* )
arr=$(echo $1 | cut -f2 -d '=')
host=$arr
if [[ -n $host ]];then
compiler=$host-gcc
else
echo -e "${red}You must special the host which you are build for${plain}"
exit 1;
fi
;;
--prefix)
shift
prefix=$1
echo "You set prefix: $prefix";;
--prefix=*)
arr=$(echo $1 | cut -f2 -d '=')
prefix=$arr
echo "You set prefix: $prefix"
;;
-dt|--download-toolchains)
{{{
test_file $compiler
if [[ $res = "true" ]];then
echo "Found $compiler"
else
echo Auto download toolchains for $host
check_targethost
$proxychains wget https://github.com/ihexon/aarch64-musl-gcc/releases/download/aarch64-musl-gcc/$host-cross.tar.xz
if [[ $? = 0 ]];then
echo "Download completed"
mkdir -p tools
mv $host-cross.tar.xz tools/
tar -xvf tools/$host-cross.tar.xz -C tools/
##
## TODO: Autodownload toolchains and install
##
else
echo -e "${red}Download Toolchains failed${plain}"
exit 1;
fi
fi
}}}
;;
esac
shift
done
echo ""
echo -e "binaries will be installed in ${green}${prefix}${plain}"
echo ""
# Found cross_compiler
{
test_file $compiler
if [[ $res = "true" ]];then
echo "Found $compiler"
else
echo ""
echo -e "${red}Error:${plain} not found cross compiler ${red}${compiler}${plain}"
echo -e "You need to install install cross toolchains, or try -dt to autodownload toolchains into $cur_dir/tools/"
echo ""
exit 1;
fi
}
prepare
compile_pcre
compile_mbedtls
compile_libsodium
compile_libev
compile_libc_ares
compile_shadowsocks_libev
clean
}
main $@