summaryrefslogtreecommitdiff
path: root/prepare
blob: 5595107a760dca9be178d8e13cdbdfb5c334fcfd (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

cd $(("$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 -static -o ../run "part$2.c"