From c788bdb1a5f092598dbd02d99791af6a7ebfb44b Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Tue, 11 Feb 2014 12:11:44 +0000 Subject: [PATCH] timer: missing optimization flag in compile Timer library was missing the -O3 compile-time flag. This has been added. Signed-off-by: Bruce Richardson --- lib/librte_timer/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_timer/Makefile b/lib/librte_timer/Makefile index 8180a17071..4ba5c3a12f 100644 --- a/lib/librte_timer/Makefile +++ b/lib/librte_timer/Makefile @@ -34,7 +34,7 @@ include $(RTE_SDK)/mk/rte.vars.mk # library name LIB = librte_timer.a -CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) +CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3 # all source are stored in SRCS-y SRCS-$(CONFIG_RTE_LIBRTE_TIMER) := rte_timer.c -- 2.20.1