summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar Antti K2014-07-29 23:49:34 +0200
committerGravatar Antti K2014-07-30 01:11:09 +0200
commitb91b95d4f4be115b7a7c8d89c69938f58ca0dc44 (patch)
tree75be5ecf8e51a7dc2f2b32536acaf4949bc348e2
parentcf2bbd108919e0c11cfe135b594817a06501a685 (diff)
downloadxkbcat-b91b95d4f4be115b7a7c8d89c69938f58ca0dc44.tar.gz
xkbcat-b91b95d4f4be115b7a7c8d89c69938f58ca0dc44.zip
Crank up optimisation
Since this thing runs many times a second, but is very small, optimise aggressively.
-rwxr-xr-xcompile2
1 files changed, 1 insertions, 1 deletions
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