patch 'config/arm: fix 32-bit build' has been queued to stable release 25.11.1

Kevin Traynor ktraynor at redhat.com
Thu Feb 26 14:08:31 CET 2026


Hi,

FYI, your patch has been queued to stable release 25.11.1

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 03/02/26. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Queued patches are on a temporary branch at:
https://github.com/kevintraynor/dpdk-stable

This queued commit can be viewed at:
https://github.com/kevintraynor/dpdk-stable/commit/39498ee79f240471e870792b975142d8e1037a37

Thanks.

Kevin

---
>From 39498ee79f240471e870792b975142d8e1037a37 Mon Sep 17 00:00:00 2001
From: Bruce Richardson <bruce.richardson at intel.com>
Date: Wed, 14 Jan 2026 17:13:35 +0000
Subject: [PATCH] config/arm: fix 32-bit build

[ upstream commit a24b7345eb9375cb89d96ab08685a1511f1aa3e7 ]

When building for 32-bit arm with GCC versions >=11 and using the
DPDK-provided cross-file, the initial configuration step fails  The
error given is:

  config/meson.build:189:8: ERROR: Problem encountered: \
		Compiler does not support "armv8-a" arch flag.

but the real problem is actually an fpu-related error which is explained
in the meson log file:

  cc1: error: '-mfloat-abi=hard': selected architecture lacks an FPU

This error can be fixed by specifying an fpu explicitly, and a number of
options will work, e.g. -mfpu=neon, -mfpu=fp-armv8. Choosing the latter
here to avoid mandating neon by default.

Fixes: e754875c296c ("config/arm: add aarch32 cross-compilation")

Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
Reviewed-by: Wathsala Vithanage <wathsala.vithanage at arm.com>
---
 config/arm/arm32_armv8_linux_gcc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/config/arm/arm32_armv8_linux_gcc b/config/arm/arm32_armv8_linux_gcc
index abcb182b16..231c9ac7a7 100644
--- a/config/arm/arm32_armv8_linux_gcc
+++ b/config/arm/arm32_armv8_linux_gcc
@@ -14,4 +14,7 @@ cpu = 'armv8-a'
 endian = 'little'
 
+[built-in options]
+c_args = '-mfpu=fp-armv8'
+
 [properties]
 platform = 'generic_aarch32'
-- 
2.53.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-02-26 10:16:48.249989573 +0000
+++ 0029-config-arm-fix-32-bit-build.patch	2026-02-26 10:16:46.930609020 +0000
@@ -1 +1 @@
-From a24b7345eb9375cb89d96ab08685a1511f1aa3e7 Mon Sep 17 00:00:00 2001
+From 39498ee79f240471e870792b975142d8e1037a37 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit a24b7345eb9375cb89d96ab08685a1511f1aa3e7 ]
+
@@ -23 +24,0 @@
-Cc: stable at dpdk.org



More information about the stable mailing list