patches for DPDK stable branches
 help / color / mirror / Atom feed
* [PATCH 19.11] config: add arch define for Arm
@ 2022-02-28  7:47 Ruifeng Wang
  0 siblings, 0 replies; only message in thread
From: Ruifeng Wang @ 2022-02-28  7:47 UTC (permalink / raw)
  To: stable; +Cc: christian.ehrhardt, nd, Ruifeng Wang, Stephen Hemminger

[ upstream commit 9cc217a28310d21fba56e5eceb740b4feb7e0949 ]

As per design document, RTE_ARCH is the name of the architecture.
However, the definition was missing on Arm with meson build.
It impacts applications that refers to this string.

Added for Arm builds.

Fixes: b1d48c41189a ("build: support ARM with meson")

Reported-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Ruifeng Wang <ruifeng.wang@arm.com>
---
 config/arm/meson.build | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/config/arm/meson.build b/config/arm/meson.build
index 60f7b0539..c6ad7b6da 100644
--- a/config/arm/meson.build
+++ b/config/arm/meson.build
@@ -133,12 +133,14 @@ if not dpdk_conf.get('RTE_ARCH_64')
 	dpdk_conf.set('RTE_CACHE_LINE_SIZE', 64)
 	dpdk_conf.set('RTE_ARCH_ARM', 1)
 	dpdk_conf.set('RTE_ARCH_ARMv7', 1)
+	dpdk_conf.set('RTE_ARCH', 'armv7')
 	# the minimum architecture supported, armv7-a, needs the following,
 	# mk/machine/armv7a/rte.vars.mk sets it too
 	machine_args += '-mfpu=neon'
 else
 	dpdk_conf.set('RTE_CACHE_LINE_SIZE', 128)
 	dpdk_conf.set('RTE_ARCH_ARM64', 1)
+	dpdk_conf.set('RTE_ARCH', 'armv8')
 
 	machine = []
 	cmd_generic = ['generic', '', '', 'default', '']
-- 
2.25.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-02-28  7:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-28  7:47 [PATCH 19.11] config: add arch define for Arm Ruifeng Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).