Add math library.

This commit is contained in:
David Betz 2018-04-14 05:08:33 -04:00
parent f8180a7096
commit 984b565ace
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ OBJECTS = $(patsubst %,$(BUILD)/%, $(SOURCES:.c=.o))
# I'm not sure why these linker flags were being used but the break the build on Mac OS X so I've
# commented them out for the time being
#LDFLAGS = -Wl,--relax -Wl,--gc-sections
LDFLAGS =
LDFLAGS = -lm
OPT := -O3
CFLAGS = -c -g -Wall -Wno-format $(OPT) -D LINUX