From 9d6d5b4d470ba27243c42d1b369f098d8a6b9c60 Mon Sep 17 00:00:00 2001 From: Pablo de Lara Date: Mon, 25 Jun 2018 13:53:11 +0100 Subject: [PATCH] app/crypto-perf: compile with -O3 The crypto performance application was not being compiled with -O3, which means that the performance shown may not be optimal. Signed-off-by: Pablo de Lara --- app/test-crypto-perf/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test-crypto-perf/Makefile b/app/test-crypto-perf/Makefile index 28a0cd03c7..78135f38ce 100644 --- a/app/test-crypto-perf/Makefile +++ b/app/test-crypto-perf/Makefile @@ -8,6 +8,7 @@ APP = dpdk-test-crypto-perf CFLAGS += $(WERROR_FLAGS) CFLAGS += -DALLOW_EXPERIMENTAL_API +CFLAGS += -O3 # all source are stored in SRCS-y SRCS-y := main.c -- 2.20.1