You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- TIMEFORMAT=%3lR
- SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
- pushd $SCRIPTPATH > /dev/null
-
- # _DEBUG
- # time g++ -fpermissive src/main.cpp -g -o ./bin/slime --std=c++17 || exit 1
- time clang++ -D_DEBUG -D_PROFILING -fpermissive src/main.cpp -g -o ./bin/slime --std=c++17 || exit 1
-
- echo ""
- pushd ./bin > /dev/null
- time ./slime --run-tests
-
- echo ""
- echo "generating docs"
- time ./slime generate-docs.slime
-
- popd > /dev/null
- popd > /dev/null
- unset TIMEFORMAT
|