-
Notifications
You must be signed in to change notification settings - Fork 128
/
build_and_test_using_clang.sh
executable file
·35 lines (30 loc) · 1.87 KB
/
build_and_test_using_clang.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
#!/bin/bash
echo "This is an alternative to running 'make'. It does not compile files in parallel."
progs="Recon Meshfit Subdivfit Polyfit MeshDistance MeshSimplify reverselines Filterprog FilterPM \
StitchPM MinCycles MeshReorder SphereParam SphereSample Filtermesh Filtera3d Filterframe Filterimage \
G3dOGL VideoViewer" # Filtervideo and G3dVec are handled separately below.
tests="$(cd test && ls *.cpp | sed 's/.cpp//')"
if [[ ${WINDIR+x} ]]; then # on Windows
llvm_bin="c:/progra~1/LLVM/bin"
cpp="$llvm_bin/clang++" ar="$llvm_bin/llvm-ar" ranlib="$llvm_bin/llvm-ranlib"
cppflags="-I.. -I../libHwWindows -std=c++17 -O3 -DNDEBUG -D_CRT_SECURE_NO_WARNINGS -DHH_NO_IMAGE_IO"
libs="libHh libHwWindows"
ldflags="../libHwWindows/libHwWindows.a ../libHh/libHh.a -lopengl32 -lwinmm -lgdi32 -lcomdlg32 -luser32"
exe=".exe"
else # on Unix
cpp=clang++ ar=ar ranlib=ranlib
cppflags="-I.. -I../libHwX -std=c++17 -O3 -DNDEBUG -pthread"
libs="libHh libHwX"
ldflags="../libHwX/libHwX.a ../libHh/libHh.a -lGL -lX11 -ljpeg -lpng -lz"
exe=""
fi
if [[ -d /Applications ]]; then # on Mac
cppflags="$cppflags -I/opt/X11/include"
ldflags="-L/opt/X11/lib $ldflags"
fi
for lib in $libs; do (cd $lib && echo Building $lib && $cpp $cppflags -c *.cpp && $ar rc $lib.a *.o && $ranlib $lib.a); done
mkdir -p ./bin/clang
for prog in $progs; do (cd $prog && echo Building $prog && $cpp -o ../bin/clang/$prog$exe $cppflags *.cpp $ldflags); done
prog=Filtervideo; (cd $prog && echo Building $prog && $cpp -o ../bin/clang/$prog$exe $cppflags *.cpp ../VideoViewer/GradientDomainLoop.cpp $ldflags)
prog=G3dVec; (cd $prog && echo Building $prog && $cpp -o ../bin/clang/$prog$exe $cppflags *.cpp ../G3dOGL/{G3d,G3ddraw,G3devent,G3dio}.cpp $ldflags)
for test in $tests; do (cd test && echo Testing $test && $cpp -o $test$exe $cppflags $test.cpp $ldflags && ../bin/hcheck $test); done