summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@iohq.net>2015-10-01 23:29:51 -0600
committerAaron Ball <nullspoon@iohq.net>2015-10-01 23:29:51 -0600
commitb8de26c118b09ee8bd763fa12111ea9d20b14684 (patch)
tree2923b1e5090ad0b273690b84db1f3cab02aa451e
parent027de39b76558ec5ce6729042c84ab09bf90d7a7 (diff)
downloadpalindrome_finder-b8de26c118b09ee8bd763fa12111ea9d20b14684.tar.gz
palindrome_finder-b8de26c118b09ee8bd763fa12111ea9d20b14684.tar.xz
Updated optimization
Don't want to optimize ourselves out of obvlion. Going from optimize level 3 to 2, since performance decrease is negligable.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)

Generated by cgit