From b91b95d4f4be115b7a7c8d89c69938f58ca0dc44 Mon Sep 17 00:00:00 2001 From: Antti K Date: Tue, 29 Jul 2014 23:49:34 +0200 Subject: Crank up optimisation Since this thing runs many times a second, but is very small, optimise aggressively. --- compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile b/compile index 41d4254..98dddd4 100755 --- a/compile +++ b/compile @@ -1 +1 @@ -clang --std=gnu11 -pedantic -Wall -o xkbcat -lX11 xkbcat.c +clang -O3 --std=gnu11 -pedantic -Wall -lX11 -o xkbcat xkbcat.c -- cgit v1.3-2-g0d8e