From 9eaa1ba47cd8376ff26015a66e3fdca359229467 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Sat, 30 Jul 2016 19:34:57 -0400 Subject: [PATCH] Use -O2 --- Makefile.config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.config b/Makefile.config index f16af7c5..0645ba14 100644 --- a/Makefile.config +++ b/Makefile.config @@ -5,9 +5,9 @@ # Configuration options for the makefile # Use these lines instead for debugging or profiling -#CFLAGS = -g -#CFLAGS = -g -pg -CFLAGS ?= -g -Wall +#CFLAGS = -g -Wall +#CFLAGS = -g -pg -Wall +CFLAGS ?= -O2 -Wall CC ?= cc # Commands "baked into" cycone for invoking the C compiler CC_PROG ?= "$(CC) ~src-file~ $(CFLAGS) -c -o ~exec-file~.o"