commit 394b187756d240ebbec6f1b57bb6423828fb5200 parent 419743d2614f93968ec6fbf2500fc908f0304db0 Author: Walther Chen <walther.chen@gmail.com> Date: Thu, 24 Oct 2024 15:36:01 -0400 justfile: use -O5 Diffstat:
M | justfile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/justfile b/justfile @@ -10,4 +10,4 @@ # using compile-run prints a bunch of logs run problem *args="": - just build {{problem}} -O3 && time ./{{problem}} {{args}} && rm ./{{problem}} + just build {{problem}} -O5 && time -pq ./{{problem}} {{args}} && rm ./{{problem}}