diff options
Diffstat (limited to 'test/benchmark/benchflatc/run.sh')
-rwxr-xr-x | test/benchmark/benchflatc/run.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/benchmark/benchflatc/run.sh b/test/benchmark/benchflatc/run.sh new file mode 100755 index 0000000..4aff0b8 --- /dev/null +++ b/test/benchmark/benchflatc/run.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash + +set -e +cd `dirname $0`/../../.. +ROOT=`pwd` +TMP=build/tmp/test/benchmark/benchflatc +INC=$ROOT/include +mkdir -p ${TMP} +rm -rf ${TMP}/* + +CXX=${CXX:-c++} +cp -r test/benchmark/benchmain/* ${TMP} +cp -r test/benchmark/benchflatc/* ${TMP} +#include include at root as it may conflict +cp -r ${ROOT}/include/flatcc/support ${TMP} + +cd ${TMP} +$CXX -g -std=c++11 benchflatc.cpp -o benchflatc_d -I $INC +$CXX -O3 -DNDEBUG -std=c++11 benchflatc.cpp -o benchflatc -I $INC +echo "running flatbench flatc for C++ (debug)" +./benchflatc_d +echo "running flatbench flatc for C++ (optimized)" +./benchflatc |