From b79a5ce751c119e53d0507487177876c73d4514e Mon Sep 17 00:00:00 2001 From: Andrew Jeffery Date: Mon, 18 Dec 2017 12:46:46 +1030 Subject: [PATCH] Makefile: Increase optimisation Signed-off-by: Andrew Jeffery --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 725d9fe..ab6191d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CFLAGS = -Wall -Wshadow -O2 -g +CFLAGS = -Wall -Wshadow -O3 -g -march=native LDLIBS = -lm all: test example1 example2 example3 example4