[PATCH 1/3] tools lib traceevent: Add -O2 option to traceevent

From: Honggyu Kim
Date: Mon Oct 17 2016 - 10:17:29 EST


Since current traceevent somehow does not have an optimization flag,
this patch just adds -O2 to optimize its code.

Signed-off-by: Honggyu Kim <hong.gyu.kim@xxxxxxx>
---
tools/lib/traceevent/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/lib/traceevent/Makefile b/tools/lib/traceevent/Makefile
index 7851df1..56d223b 100644
--- a/tools/lib/traceevent/Makefile
+++ b/tools/lib/traceevent/Makefile
@@ -124,7 +124,7 @@ else
endif

# Append required CFLAGS
-override CFLAGS += -fPIC
+override CFLAGS += -O2 -fPIC
override CFLAGS += $(CONFIG_FLAGS) $(INCLUDES) $(PLUGIN_DIR_SQ)
override CFLAGS += $(udis86-flags) -D_GNU_SOURCE

--
2.10.0.rc2.dirty