From 81f1b435815f7a012ae46719409e939e29cb8cac Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Fri, 8 Dec 2017 19:01:53 +1100 Subject: [PATCH] [client] makefile, enable -O3 as the default now --- client/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Makefile b/client/Makefile index 276b0a26..70f88699 100644 --- a/client/Makefile +++ b/client/Makefile @@ -1,5 +1,5 @@ BINARY = looking-glass-client -CFLAGS = -g -Og -std=gnu99 -march=native -Wall -Werror -I./ -I../common -DDEBUG +CFLAGS = -g -O3 -std=gnu99 -march=native -Wall -Werror -I./ -I../common -DDEBUG LDFLAGS = -lrt CFLAGS += -ffast-math