mk: fix -march for octeontx2 target
authorJerin Jacob <jerinj@marvell.com>
Tue, 2 Jul 2019 15:06:19 +0000 (20:36 +0530)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 2 Jul 2019 21:55:35 +0000 (23:55 +0200)
Correct the wrong -march=-mcpu=armv8.2-a+crc+crypto+lse for
octeontx2 target. Since rte_cc_has_argument drops invalid
CFLAG and -mcpu=octeontx2 picks up the correct optimization,
this typo is not noticed in performance testing.

Fixes: 01d184798731 ("config: add octeontx2 machine")
Cc: stable@dpdk.org
Signed-off-by: Jerin Jacob <jerinj@marvell.com>
mk/machine/octeontx2/rte.vars.mk

index cbec7f1..e209cf4 100644 (file)
@@ -30,5 +30,5 @@
 
 include $(RTE_SDK)/mk/rte.helper.mk
 
-MACHINE_CFLAGS += $(call rte_cc_has_argument, -march=-mcpu=armv8.2-a+crc+crypto+lse)
+MACHINE_CFLAGS += $(call rte_cc_has_argument, -march=armv8.2-a+crc+crypto+lse)
 MACHINE_CFLAGS += $(call rte_cc_has_argument, -mcpu=octeontx2)