blob: fc3e90ecf270a5631dab69a0344a3d18cb4f99dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
exe=''
if [ "$OS" = "Windows_NT" ] ; then exe=".exe" ; fi
clang++ -DNDEBUG -I../../include -O3 -o cdeq_benchmark$exe cdeq_benchmark.cpp
clang++ -DNDEBUG -I../../include -O3 -o clist_benchmark$exe clist_benchmark.cpp
clang++ -DNDEBUG -I../../include -O3 -o cmap_benchmark$exe cmap_benchmark.cpp
clang++ -DNDEBUG -I../../include -O3 -o csmap_benchmark$exe csmap_benchmark.cpp
clang++ -DNDEBUG -I../../include -O3 -o cvec_benchmark$exe cvec_benchmark.cpp
c='Win-Clang-16.0.5'
./cdeq_benchmark$exe $c
./clist_benchmark$exe $c
./cmap_benchmark$exe $c
./csmap_benchmark$exe $c
./cvec_benchmark$exe $c
|