[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/6] configure: Fix arch detection for GDB_HAS_MTE
|
From: |
Alex Bennée |
|
Subject: |
[PATCH 3/6] configure: Fix arch detection for GDB_HAS_MTE |
|
Date: |
Wed, 7 Aug 2024 12:40:56 +0100 |
From: Gustavo Romero <gustavo.romero@linaro.org>
GDB_HAS_MTE must only be set if GDB supports the aarch64 arch, so the
test if "aarch64" string is present must be against GDB-related
'$gdb_arches' variable and not against '$arch' variable.
Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
Message-Id: <20240804161850.2646299-2-gustavo.romero@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 019fcbd0ef..a3aa257fd3 100755
--- a/configure
+++ b/configure
@@ -1673,7 +1673,7 @@ for target in $target_list; do
echo "GDB=$gdb_bin" >> $config_target_mak
fi
- if test "${arch}" = "aarch64" && version_ge ${gdb_version##* } 15.0; then
+ if test "${gdb_arches#*aarch64}" != "$gdb_arches" && version_ge
${gdb_version##* } 15.0; then
echo "GDB_HAS_MTE=y" >> $config_target_mak
fi
--
2.39.2
- [PATCH 0/6] A few more fixes for 9.1, Alex Bennée, 2024/08/07
- [PATCH 2/6] Makefile: trigger re-configure on updated pythondeps, Alex Bennée, 2024/08/07
- [PATCH 4/6] configure: Avoid use of param. expansion when using gdb_version, Alex Bennée, 2024/08/07
- [PATCH 3/6] configure: Fix arch detection for GDB_HAS_MTE,
Alex Bennée <=
- [PATCH 1/6] tests/avocado: Re-enable gdbsim-r5f562n8 testing U-Boot, Alex Bennée, 2024/08/07
- [PATCH 5/6] configure: Fix GDB version detection for GDB_HAS_MTE, Alex Bennée, 2024/08/07
- [PATCH 6/6] scripts/checkpatch: more checks on files imported from Linux, Alex Bennée, 2024/08/07