Hi, this makes sense.
> Subject: [dpdk-dev] [memnic PATCH] pmd: enable compiler optimization > > Add -O3 in flags, it was missing in initial Makefile. > > Signed-off-by: Olivier Matz <olivier.matz at 6wind.com> Acked-by: Hiroshi Shimamoto <h-shimamoto at ct.jp.nec.com> thanks, Hiroshi > --- > pmd/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/pmd/Makefile b/pmd/Makefile > index 7f96af1..c22f69f 100644 > --- a/pmd/Makefile > +++ b/pmd/Makefile > @@ -39,7 +39,7 @@ O ?= . > > CC = $(CROSS)gcc > override CPPFLAGS += -Wall -Wextra -Werror > -override CFLAGS += -fPIC > +override CFLAGS += -fPIC -O3 > override LDFLAGS += -shared > > prefix ?= /usr/local > -- > 1.8.5.3