blob: 1702aa0db538cfe3ea8c2b3ed22ed340d5aa9f72 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env bash
cd ${1#0}
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 -static -o ../run "part$2.c"
|