about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-25 11:02:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-25 11:02:49 -0700
commitdde413e885a11e615921ed7616db6dcfb2aa8041 (patch)
tree4246f87b34b06e0aa92f315207f175f080608da1
parenteed47a863beb81271ddd2a8ad6ab0d8425cdf380 (diff)
downloadmu-dde413e885a11e615921ed7616db6dcfb2aa8041.tar.gz
1659 - still a little sluggish
Time to turn on optimizations, since we aren't recompiling mu all the
time anymore.

But it doesn't help much with the editor. We need to be smarter about
not rendering the whole screen.
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 50f88f7c..f4096838 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,5 @@
 mu: makefile enumerate/enumerate tangle/tangle mu.cc termbox/libtermbox.a
-	c++ -g -Wall -Wextra -fno-strict-aliasing mu.cc termbox/libtermbox.a -o mu
+	c++ -g -O3 -Wall -Wextra -fno-strict-aliasing mu.cc termbox/libtermbox.a -o mu
 
 # To see what the program looks like after all layers have been applied, read
 # mu.cc