mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 14:24:02 +08:00
configure: gate our use of GDB to 8.3.1 or above
The support of socket based debugging which we need for linux-user testing is only really stable as of 8.3.1 so lets gate our use of GDB on having a relatively modern version. For direct testing you can just point to a locally compiled version of gdb via configure, e.g.: ../../configure --gdb=$HOME/src/binutils-gdb.git/builds/all/install/bin/gdb Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20210108224256.2321-4-alex.bennee@linaro.org>
This commit is contained in:
parent
5662ab11f6
commit
b1863ccc95
7
configure
vendored
7
configure
vendored
@ -6166,8 +6166,11 @@ if test "$plugins" = "yes" ; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if test -n "$gdb_bin" ; then
|
||||
echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
|
||||
if test -n "$gdb_bin"; then
|
||||
gdb_version=$($gdb_bin --version | head -n 1)
|
||||
if version_ge ${gdb_version##* } 8.3.1; then
|
||||
echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$secret_keyring" = "yes" ; then
|
||||
|
Loading…
Reference in New Issue
Block a user