[Remove] -fno-inline, potentially harm debug performance with no extra gain.

This commit is contained in:
Allanis 2013-07-04 13:46:10 +01:00
parent 8213cb9f48
commit c464e7d056

View File

@ -30,7 +30,7 @@ ifeq ($(OS),LINUX)
endif endif
ifdef DEBUG ifdef DEBUG
CFLAGS += -W -Wall -Wextra -Wshadow -Wpointer-arith -Wmissing-prototypes -Winline -Wcast-align \ CFLAGS += -W -Wall -Wextra -Wshadow -Wpointer-arith -Wmissing-prototypes -Winline -Wcast-align \
-Wmissing-declarations -fno-inline -g3 -DDEBUG -DLUA_USE_APICHECK -std=c99 -Wmissing-declarations -g3 -DDEBUG -DLUA_USE_APICHECK -std=c99
else else
CFLAGS += -O2 -funroll-loops -pipe -std=c99 CFLAGS += -O2 -funroll-loops -pipe -std=c99
endif endif