[client] added missing library for floor function

This commit is contained in:
Geoffrey McRae 2018-05-29 11:08:56 +10:00
parent fbbee1cdac
commit 6918eeca26

View File

@ -1,6 +1,6 @@
BINARY = looking-glass-client
CFLAGS = -g -O3 -std=gnu99 -march=native -Wall -Werror -I./ -I../common -DDEBUG -DATOMIC_LOCKING
LDFLAGS = -lrt
LDFLAGS = -lrt -lm
CFLAGS += -ffast-math
CFLAGS += -fdata-sections -ffunction-sections