[client] makefile, enable -O3 as the default now

This commit is contained in:
Geoffrey McRae 2017-12-08 19:01:53 +11:00
parent 79dffa047f
commit 81f1b43581

View File

@ -1,5 +1,5 @@
BINARY = looking-glass-client 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 LDFLAGS = -lrt
CFLAGS += -ffast-math CFLAGS += -ffast-math