-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhisi.sh
executable file
·67 lines (53 loc) · 1.23 KB
/
hisi.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
#!/bin/sh
clear
rm -rfv lib/*
echo "###############################################################################"
cd fifo;make clean;make
if [ $? -ne 0 ];then
echo "make fifo err"
exit
fi
cd -
cp -vf fifo/libgfifo.a lib/
echo "###############################################################################"
cd rtsp;make clean;make
if [ $? -ne 0 ];then
echo "make rtsp err"
exit
fi
cd -
cp -vf rtsp/librtsp_hisi.a lib/
echo "###############################################################################"
cd v4l2;make clean;make
if [ $? -ne 0 ];then
echo "make v4l2 err"
exit
fi
cd -
cp -vf v4l2/libgv4l2.a lib/
echo "###############################################################################"
cd x265;make clean;make
if [ $? -ne 0 ];then
echo "make x265 err"
exit
fi
cd -
cp -vf x265/libgx265.a lib/
echo "###############################################################################"
ctags -R
gcc main_online.c \
-L lib -lgx265 -lrtsp_hisi -lgfifo -lgv4l2 \
-L /usr/local/lib -lx265 \
-I /usr/local/include \
-I fifo \
-I rtsp \
-lpthread \
-o online
gcc main_native.c \
-L lib -lgx265 -lrtsp_hisi -lgfifo -lgv4l2 \
-L /usr/local/lib -lx265 \
-I /usr/local/include \
-I fifo \
-I rtsp \
-lpthread \
-o native