[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/3] configure: Fix GDB version detection for GDB_HAS_MTE
|
From: |
Gustavo Romero |
|
Subject: |
[PATCH 3/3] configure: Fix GDB version detection for GDB_HAS_MTE |
|
Date: |
Sun, 4 Aug 2024 16:18:50 +0000 |
The test gdbstub/test-mte.py requires a GDB version that supports the
qIsAddressTagged packet. According to GDB NEWS [0], this packet was
first made available in the GDB 15.1 release, not in 15.0, so this
commit fixes it in configure.
[0] https://www.sourceware.org/gdb/news/
Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2477
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 97de85d710..d08b71f14b 100755
--- a/configure
+++ b/configure
@@ -1675,7 +1675,7 @@ for target in $target_list; do
echo "GDB=$gdb_bin" >> $config_target_mak
fi
- if test "${gdb_arches#*aarch64}" != "$gdb_arches" && version_ge
$gdb_version 15.0; then
+ if test "${gdb_arches#*aarch64}" != "$gdb_arches" && version_ge
$gdb_version 15.1; then
echo "GDB_HAS_MTE=y" >> $config_target_mak
fi
--
2.34.1