xabina/compile.sh

14 lines
190 B
Bash
Raw Permalink Normal View History

#!/bin/bash
set -xe
2023-10-16 14:28:07 -04:00
# WIP
2023-10-15 13:35:03 -04:00
rm -rf *.o *.ali
gnatmake -o xabina main.adb
2023-10-15 13:35:03 -04:00
stty raw -echo && valgrind --show-leak-kinds=all --leak-check=full --log-file=log.txt ./xabina && stty sane
exit