From d0152e1f1a4114bf2ed03e549222be09ea8a0dbb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Juraj=20Linke=C5=A1?= Date: Fri, 5 Nov 2021 12:56:30 +0100 Subject: [PATCH] config/arm: split aarch32 options MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Aarch32 config got overlooked when splitting march in a previous patch. Fixes: 95e0f23022a3 ("config/arm: split -march into arch and features") Signed-off-by: Juraj Linkeš Acked-by: Ruifeng Wang --- config/arm/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/arm/meson.build b/config/arm/meson.build index d22b41e096..213324d262 100644 --- a/config/arm/meson.build +++ b/config/arm/meson.build @@ -43,7 +43,8 @@ implementer_generic = { 'compiler_options': ['-moutline-atomics'] }, 'generic_aarch32': { - 'machine_args': ['-march=armv8-a', '-mfpu=neon'], + 'march': 'armv8-a', + 'compiler_options': ['-mfpu=neon'], 'flags': [ ['RTE_ARCH_ARM_NEON_MEMCPY', false], ['RTE_ARCH_STRICT_ALIGN', true], -- 2.39.5