45 lines
1.1 KiB
Bash
Executable File
45 lines
1.1 KiB
Bash
Executable File
#!/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}"
|
|
;;
|
|
|
|
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
|
|
;;
|
|
|
|
api-gen ) "$toolpath"/gen_api_header.sh
|
|
;;
|
|
|
|
* ) echo "Unknown command."
|
|
;;
|
|
esac
|