-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompile.sh
60 lines (46 loc) · 1.6 KB
/
compile.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
#!/bin/sh
echo "\n"
echo "======================================================================================="
echo " Compile Script for building the model "
echo "======================================================================================="
echo "\n"
CURRPWD=$(pwd) # current dir
OUT=$CURRPWD/model.out
LOG=$CURRPWD/last_compile.log
[ "$1" = "-release" ] && build="Release" || build="Debug"
rm $OUT 2> /dev/null
cppdir="$CURRPWD/src"
cpp="project.cpp"
include="-I$CURRPWD/inc"
#options="-ftime-report"
#options="-pass-exit-codes"
release_options="-Ofast"
debug_options="-g"
if [ "$1" = "-release" ]; then
flags="$include $CURRPWD/$cppdir/$cpp -ljsoncpp -o $OUT $release_options -std=c++17 -Wall"
else
flags="$include $CURRPWD/$cppdir/$cpp -ljsoncpp -o $OUT $debug_options -std=c++17 -Wall"
fi
echo "\tFlags:"
echo "-----------------------------------------------"
echo "\t$flags"
echo "\n"
echo "\tOutput:"
echo "-----------------------------------------------"
start=`date +%s`
g++ $flags 2>&1 | tee $LOG
end=`date +%s`
# g++ exit code instead of using g++ flag
gcc_exit_code=$(grep ": error:" $LOG)
if [ -n "$gcc_exit_code" ]; then
echo "Error:"
echo "-----------------------------------------------"
echo $gcc_exit_code
fi
# give confirmation of compilation
if [ -f $OUT ]; then
echo "\n\n"
echo "======================================================================================="
echo " $build build compiled on $(date) and took $(( $end - $start )) seconds"
echo "======================================================================================="
fi