summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAlex Bennée2021-02-02 14:39:53 +0100
committerAlex Bennée2021-02-08 10:41:00 +0100
commitd6a66c811edacd59b7b414474f30cc5a4dce32a1 (patch)
tree5d3220cffb3c9fea74d41b4a75731af08a003a31 /configure
parentconfigure: make version_ge more tolerant of shady version input (diff)
downloadqemu-d6a66c811edacd59b7b414474f30cc5a4dce32a1.tar.gz
qemu-d6a66c811edacd59b7b414474f30cc5a4dce32a1.tar.xz
qemu-d6a66c811edacd59b7b414474f30cc5a4dce32a1.zip
configure: bump the minimum gdb version for check-tcg to 9.1
For SVE, currently the bulk of the GDB TCG tests, we need at least GDB 9.1 to support the "ieee_half" data type we report. This only affects when GDB tests are run; users can still use lower versions of gdb as long as they aren't talking to an SVE enabled model. The work around is to either get a newer gdb or disable SVE for their CPU model. Reported-by: Claudio Fontana <cfontana@suse.de> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Cc: Luis Machado <luis.machado@linaro.org> Message-Id: <20210202134001.25738-9-alex.bennee@linaro.org>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 36036aa2f2..57813eba7b 100755
--- a/configure
+++ b/configure
@@ -6115,7 +6115,7 @@ fi
if test -n "$gdb_bin"; then
gdb_version=$($gdb_bin --version | head -n 1)
- if version_ge ${gdb_version##* } 8.3.1; then
+ if version_ge ${gdb_version##* } 9.1; then
echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
fi
fi