From c464e7d05604b3664d6c68c0be1379b3ed05b973 Mon Sep 17 00:00:00 2001 From: Allanis Date: Thu, 4 Jul 2013 13:46:10 +0100 Subject: [PATCH] [Remove] -fno-inline, potentially harm debug performance with no extra gain. --- bin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Makefile b/bin/Makefile index 05e1334..4966f66 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -30,7 +30,7 @@ ifeq ($(OS),LINUX) endif ifdef DEBUG 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 CFLAGS += -O2 -funroll-loops -pipe -std=c99 endif