From b8de26c118b09ee8bd763fa12111ea9d20b14684 Mon Sep 17 00:00:00 2001 From: Aaron Ball Date: Thu, 1 Oct 2015 23:29:51 -0600 Subject: Updated optimization Don't want to optimize ourselves out of obvlion. Going from optimize level 3 to 2, since performance decrease is negligable. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 110957b..1c13b14 100644 --- a/Makefile +++ b/Makefile @@ -2,5 +2,5 @@ out = palindromfinder cc = cc all: - $(cc) -O3 src/main.c -o $(out) + $(cc) -O2 src/main.c -o $(out) -- cgit v1.2.3