fix warning on OS X

This commit is contained in:
Steffen Jaeckel 2017-06-14 14:11:00 +02:00
parent cf4dd99079
commit 8cfdb2a3b9

View File

@ -23,6 +23,7 @@ VERSION_LIB=1:0:0
# by giving them as a parameter to make: # by giving them as a parameter to make:
# make CFLAGS="-I./src/headers/ -DLTC_SOURCE ..." ... # make CFLAGS="-I./src/headers/ -DLTC_SOURCE ..." ...
# #
CFLAGS += -Wall -W -Wshadow -Isrc/headers CFLAGS += -Wall -W -Wshadow -Isrc/headers
ifdef COMPILE_DEBUG ifdef COMPILE_DEBUG
@ -31,7 +32,12 @@ CFLAGS += -g3
else else
ifndef IGNORE_SPEED ifndef IGNORE_SPEED
CFLAGS += -O3 -funroll-loops CFLAGS += -O3
PLATFORM := $(shell uname | sed -e 's/_.*//')
ifneq ($(PLATFORM), Darwin)
CFLAGS += -funroll-loops
endif
#profiling #profiling
#PROF=-pg -g #PROF=-pg -g