townengine/tools/twn

45 lines
1.1 KiB
Plaintext
Raw Normal View History

#!/bin/env sh
# townengine tooling interface
set +e
toolpath="$(dirname -- "${BASH_SOURCE[0]}")"
export TWNROOT=$(realpath "$toolpath"/../)
export TWNBUILDDIR=$(realpath "$toolpath"/../.build)
exe="$(basename $PWD)"
case "$1" in
build ) "$toolpath"/build.sh "${@:2}"
;;
2024-10-07 13:58:55 +00:00
run ) ./$exe "${@:2}"
;;
gdb ) unset DEBUGINFOD_URLS
gdb -ex run --args "$(basename $PWD)" "${@:2}"
;;
apitrace ) case "$2" in
take ) export ASAN_OPTIONS=verify_asan_link_order=0
export LD_PRELOAD="/usr/lib/libubsan.so /usr/lib/apitrace/wrappers/glxtrace.so $LD_PRELOAD"
./$exe "${@:3}"
;;
show ) traces=( $exe.*.trace )
trace=${traces[-1]}
if [ "$trace" = "$exe.*.trace" ]; then
trace="$exe.trace"
fi
qapitrace ${trace}
;;
esac
;;
2024-10-07 15:06:10 +00:00
api-gen ) "$toolpath"/gen_api_header.sh
;;
* ) echo "Unknown command."
;;
esac