aboutsummaryrefslogtreecommitdiffstats
path: root/aoc
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2021-12-13 14:55:25 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2021-12-13 14:55:25 +0200
commit31ca38b2824a8d4e8257e14b1a783016ff37258e (patch)
tree6261a5cd1b3533d17a37b1ad19d75dad965b4e5c /aoc
parent197f07c4ad5c71b821a5dcdc84d01eec07ff64f6 (diff)
Add -O2 flag to ghc command
Diffstat (limited to 'aoc')
-rwxr-xr-xaoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/aoc b/aoc
index 8074537..3503057 100755
--- a/aoc
+++ b/aoc
@@ -16,4 +16,4 @@ if [ ! -f "${INPUT}" ]; then
exit 1
fi
-ghc ../utils.hs main.hs && (cat "${INPUT}" | ./main)
+ghc -O2 ../utils.hs main.hs && (cat "${INPUT}" | ./main)