blob: 40ba5d328118d4d5a0365007e55dafd2cc5d1c6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
if [[ $1 == "debug" ]]
then
shift
odin build tools/odinfmt/main.odin -file -show-timings -collection:src=src -out:odinfmt -o:none -debug
exit 0
fi
odin build tools/odinfmt/main.odin -file -show-timings -collection:src=src -out:odinfmt -o:speed
|