blob: 7e4f9e5098d2af0296e5fd55e3efb0b81029cf10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
set -ef
day="$(printf '%02d' "$1")"
file="part$2.c"
if test -f "part$2_fast.c"
then
file="part$2_fast.c"
fi
clang -Wall -pedantic -O3 -march=native -mtune=native -flto -s -o run "$day/$file"
|