-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·38 lines (31 loc) · 1.08 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
#!/bin/sh
gcc -o stresstest_libcurl stresstest_libcurl.c -lcurl -lpthread
gcc -o stresstest stresstest.c -lpthread
gcc -o webserver webserver.c
gcc -o webserver_multithread webserver_multithread.c -lpthread
gcc -c 3rdparty/uuid4/src/uuid4.c -I3rdparty/uuid4/src/
g++ -c 3rdparty/tinyxml2-9.0.0/tinyxml2.cpp -I3rdparty/tinyxml2-9.0.0/
g++ -o edgerq_sc edgerq_sc.cpp base64.cpp msggram.cpp time.cpp list.cpp common.cpp \
sockaddr.cpp \
-lpthread \
-Wdeprecated \
-ltinyxml2 \
-I3rdparty/uuid4/src/ uuid4.o
g++ -o edgerq_sp edgerq_sp.cpp base64.cpp msggram.cpp time.cpp list.cpp common.cpp \
sockaddr.cpp \
-lpthread \
-Wdeprecated \
-ltinyxml2 \
-I3rdparty/uuid4/src/ uuid4.o
g++ -o edgerq_rp edgerq_rp.cpp base64.cpp msggram.cpp time.cpp list.cpp common.cpp \
sockaddr.cpp \
udp.cpp \
-lpthread \
-Wdeprecated \
-ltinyxml2 \
-I3rdparty/uuid4/src/ uuid4.o
g++ -o edgerq_rptp edgerq_rptp.cpp base64.cpp msggram.cpp time.cpp list.cpp common.cpp \
-lpthread \
-Wdeprecated \
-ltinyxml2 \
-I3rdparty/uuid4/src/ uuid4.o