xd/compile.sh

10 lines
189 B
Bash
Raw Normal View History

2023-09-21 01:08:10 -04:00
#!/bin/bash
set -xe
gcc -g -ansi -Wall -Wextra -Wpedantic -o xd xd.c
clang -g -ansi -Weverything -o xd xd.c
valgrind --show-leak-kinds=all --leak-check=full --log-file=log.txt ./xd
exit