22 lines
451 B
Bash
Executable File
22 lines
451 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
|
|
CONFIG=release
|
|
case "$*" in
|
|
(*--debug*) CONFIG=debug;;
|
|
esac
|
|
|
|
EXEC=$DIR/../build/xenia/$CONFIG/xenia-run
|
|
|
|
if [ ! -f "$EXEC" ]; then
|
|
python $DIR/../xenia-build.py build --$CONFIG
|
|
fi
|
|
|
|
$EXEC "$@"
|
|
|
|
|
|
# TODO(benvanik): add --valgrind and --leaks
|
|
# xbb --debug && rm valgrind.txt && valgrind --log-file=valgrind.txt --dsymutil=yes build/xenia/debug/xenia-run "$@"
|
|
# --track-origins=yes --leak-check=full
|