From: Gustavo Romero Date: Tue, 13 Aug 2024 20:23:11 +0000 (+0100) Subject: configure: Fix arch detection for GDB_HAS_MTE X-Git-Tag: qemu-xen-4.20.0~15^2~18 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=819039a5ad6044467ddad96e656f430198fe1c20;p=qemu-xen.git configure: Fix arch detection for GDB_HAS_MTE 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 Message-Id: <20240804161850.2646299-2-gustavo.romero@linaro.org> Signed-off-by: Alex Bennée Message-Id: <20240813202329.1237572-4-alex.bennee@linaro.org> --- 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