-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·484 lines (391 loc) · 8.14 KB
/
build.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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
#!/bin/bash
set -eo pipefail
SCRIPT=$(realpath "$0")
SCRIPTPATH=$(dirname "$SCRIPT")
jobs=$(nproc)
verbose='false'
build_lib='all'
clean='false'
out_dir="$SCRIPTPATH/out"
print_usage() {
printf "Usage: ./build.sh [options...]\n"
printf "Options:\n"
printf " -v, --verbose Verbose output\n"
printf " --clean Clean build directory\n"
printf " -j, --jobs Number of jobs to run simultaneously (default $jobs)\n"
printf " -b, --build [all|protobuf|x264|x265|libvpx|opus|dav1d|svt-av1|opencv|ffmpeg(+tls)] Build specific library (default: $build)\n"
printf " --prefix Out Prefix (default: $out_dir)\n"
printf " -h, --help Show this help message\n"
}
build_target() {
local target=$(echo "$1" | tr '[:upper:]' '[:lower:]')
if [[ $build_lib =~ "$target" ]]; then
return 0
fi
return 1
}
function parse_args() {
while [[ $# -gt 0 ]]; do
case "$1" in
-v | --verbose)
verbose='true'
shift # Remove argument name from processing
;;
-j | --jobs)
jobs=$2
shift # Remove argument name
shift # Remove argument value
;;
-b | --build)
build_lib=$2
shift # Remove argument name
shift # Remove argument value
;;
-h | --help)
print_usage
exit 0
;;
--clean)
clean='true'
shift # Remove argument name
;;
--prefix)
out_dir=$2
shift # Remove argument name
shift # Remove argument value
;;
*)
echo "Unknown option: $1"
print_usage
exit 1
;;
esac
done
}
function init() {
parse_args "$@"
OLD_ENV="$(env)"
pushd "$SCRIPTPATH" >/dev/null
if [ ! -z "$TERM" ] && tty -s; then
tput civis
fi
function cleanup() {
if [ ! -z "$TERM" ] && tty -s; then
tput cnorm
fi
popd >/dev/null
for line in $(env); do
if [[ $line == *=* ]]; then
unset $line
fi
done
for line in $OLD_ENV; do
if [[ $line == *=* ]]; then
export $line
fi
done
}
trap cleanup EXIT
out_dir=$(realpath "$out_dir")
mkdir -p $out_dir
mkdir -p "$SCRIPTPATH/build"
if [ "$verbose" = 'true' ]; then
set -x
fi
if build_target "all"; then
build_lib="$build_lib protobuf x264 x265 libvpx opus dav1d svt-av1 opencv ffmpeg"
fi
}
function settings() {
echo "CC=$CC CXX=$CXX LD=$LD INSTALL_DIR=$out_dir"
}
function check_tool() {
local name=$1
printf "Checking $name "
path=$(which $name || true) || ""
if [ -z "$path" ]; then
echo "[NOT FOUND]"
echo "$name could not be found, please install $name"
exit 1
fi
echo "[FOUND] ($path)"
}
function spinner() {
local name=$1
local pid=$2
local spinstr='|/-\'
while ps -p $pid >/dev/null; do
local temp=${spinstr#?}
printf "[%c] " "$spinstr"
local spinstr=$temp${spinstr%"$temp"}
sleep 0.75
printf "\b\b\b\b\b"
done
printf " \b\b\b\b"
wait $pid || {
echo "[FAILED]"
echo "tail of build log:"
local log=$SCRIPTPATH/build/$name/build.log
tail -n 100 $log
echo ""
echo "Failed to build $name, see $log for more details"
exit 1
}
echo "[DONE]"
}
function builder() {
local name=$1
local check_file=$2
local build_inner=$3
if [ ! -f "$SCRIPTPATH/$name/$check_file" ]; then
echo "Failed to find $name source code, please run git submodule update --init --recursive"
exit 1
fi
printf "Building $name "
if [ "$(build_target $name && echo "1" || echo "0")" == '0' ]; then
echo "[SKIPPED]"
return
fi
local build_done=$SCRIPTPATH/build/$name/build-done
local do_build='true'
local build_done_content=$(cat $build_done 2>/dev/null) || ""
local settings_value="$(settings)"
if [ "$build_done_content" = "$settings_value" ]; then
do_build='false'
fi
if [ "$clean" = 'true' ] || [ "$do_build" = 'true' ]; then
rm -rf "$SCRIPTPATH/build/$name"
do_build='true'
fi
if [ "$do_build" = 'false' ]; then
echo "[CACHED]"
return
fi
mkdir -p $SCRIPTPATH/build/$name
cd $SCRIPTPATH/build/$name
function inner() {
set -exo pipefail
SOURCEPATH=$SCRIPTPATH/$1
OUTPATH=$out_dir
DOBUILD=$do_build
$build_inner
echo $settings_value >$build_done
}
inner $name >$SCRIPTPATH/build/$name/build.log 2>&1 &
spinner $name $!
}
function build_protobuf() {
cmake \
-GNinja \
-Dprotobuf_BUILD_TESTS=OFF \
-DCMAKE_BUILD_TYPE=Release \
-DABSL_PROPAGATE_CXX_STD=ON \
-DCMAKE_INSTALL_PREFIX=$OUTPATH \
$SOURCEPATH
cmake --build . --config Release -j $jobs
cmake --install . --config Release
}
function build_x264() {
$SOURCEPATH/configure \
--prefix=$OUTPATH \
--disable-static \
--enable-shared \
--enable-pic \
--bindir=$OUTPATH/bin
make -j$jobs
make install
}
function build_x265() {
pushd $SCRIPTPATH/x265
TAG=$(git tag)
if [ -z "$TAG" ]; then
git tag 3.5
fi
popd
cmake \
-GNinja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=$OUTPATH \
-DENABLE_SHARED=ON \
$SOURCEPATH/source
cmake \
--build . \
--config Release \
-j $jobs
cmake \
--install . \
--config Release
}
function build_libvpx() {
$SOURCEPATH/configure \
--prefix=$OUTPATH \
--disable-static \
--enable-shared \
--disable-examples \
--disable-unit-tests \
--enable-vp9-highbitdepth \
--as=yasm \
--enable-pic
make -j$jobs
make install
}
function build_opus() {
$SOURCEPATH/autogen.sh
$SOURCEPATH/configure \
--enable-shared \
--disable-static \
--prefix=$OUTPATH
make -j$jobs
make install
}
function build_dav1d() {
meson setup \
-Denable_tools=false \
-Denable_tests=false \
--default-library=shared \
--prefix $OUTPATH \
--libdir $OUTPATH/lib \
$SOURCEPATH
ninja -j $jobs
ninja install
}
function build_svt_av1() {
cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX=$OUTPATH \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_DEC=OFF \
-DBUILD_SHARED_LIBS=ON \
-DBUILD_STATIC_LIBS=OFF \
$SOURCEPATH
cmake \
--build . \
--config Release \
-j $jobs
cmake \
--install . \
--config Release
}
function build_opencv() {
cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX=$OUTPATH \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=ON \
-DBUILD_STATIC_LIBS=OFF \
-DBUILD_LIST=core,imgproc \
-DENABLE_PIC=ON \
-DOPENCV_GENERATE_PKGCONFIG=ON \
-DOPENCV_FORCE_3RDPARTY_BUILD=ON \
-DWITH_PNG=OFF \
-DWITH_JPEG=OFF \
-DWITH_TIFF=OFF \
-DWITH_WEBP=OFF \
-DWITH_OPENEXR=OFF \
-DWITH_JASPER=OFF \
-DWITH_PROTOBUF=OFF \
$SOURCEPATH
cmake \
--build . \
--config Release \
-j $jobs
cmake \
--install . \
--config Release
}
function build_ffmpeg() {
args=(
--extra-libs="-lpthread -lm"
--prefix="$OUTPATH"
--pkg-config-flags="--static"
--extra-cflags="-I$OUTPATH/include"
--extra-ldflags="-L$OUTPATH/lib"
--cc="$CC"
--cxx="$CXX"
--ld="$LD"
--disable-static
--enable-shared
--enable-pic
--enable-gpl
--enable-nonfree
)
if build_target "dav1d"; then
args+=(
--enable-libdav1d
)
fi
if build_target "x264"; then
args+=(
--enable-libx264
)
fi
if build_target "x265"; then
args+=(
--enable-libx265
)
fi
if build_target "opus"; then
args+=(
--enable-libopus
)
fi
if build_target "libvpx"; then
args+=(
--enable-libvpx
)
fi
if build_target "svt-av1"; then
args+=(
--enable-libsvtav1
)
fi
if build_target "ffmpeg+tls"; then
args+=(
--enable-openssl
)
fi
PKG_CONFIG_PATH="$OUTPATH/lib/pkgconfig" $SOURCEPATH/configure "${args[@]}"
make -j$jobs
make install
}
init "$@"
check_tool ninja
check_tool cmake
check_tool make
check_tool nasm
if build_target "libvpx"; then
check_tool yasm
fi
if build_target "dav1d"; then
check_tool meson
fi
if build_target "opus"; then
check_tool autoconf
check_tool aclocal
check_tool libtoolize
fi
if build_target "ffmpeg"; then
check_tool pkg-config
fi
if build_target "x265"; then
check_tool git
fi
echo "Settings:"
echo " Build: $build_lib"
echo " Clean: $clean"
echo " Prefix: $out_dir"
echo " CC: $CC"
echo " CXX: $CXX"
echo " LD: $LD"
echo " Jobs: $jobs"
echo ""
builder "protobuf" "CMakeLists.txt" build_protobuf
builder "x264" "configure" build_x264
builder "x265" "source/CMakeLists.txt" build_x265
builder "libvpx" "configure" build_libvpx
builder "opus" "autogen.sh" build_opus
builder "dav1d" "meson.build" build_dav1d
builder "SVT-AV1" "CMakeLists.txt" build_svt_av1
builder "opencv" "CMakeLists.txt" build_opencv
builder "FFmpeg" "configure" build_ffmpeg
echo "Done!"