xabina/compile.sh

12 lines
183 B
Bash
Raw Normal View History

#!/bin/bash
set -xe
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