diff mbox series

[PULL,06/14] configure: favour gdb-multiarch if we have it

Message ID 20200506120529.18974-7-alex.bennee@linaro.org (mailing list archive)
State New, archived
Headers show
Series [PULL,01/14] .travis.yml: show free disk space at end of run | expand

Commit Message

Alex Bennée May 6, 2020, 12:05 p.m. UTC
As gdb will generally be talking to "foreign" guests lets use that if
we can. Otherwise the chances of gdb barfing are considerably higher.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200430190122.4592-2-alex.bennee@linaro.org>
diff mbox series

Patch

diff --git a/configure b/configure
index 23b5e93752b..c58787100f1 100755
--- a/configure
+++ b/configure
@@ -303,7 +303,7 @@  libs_qga=""
 debug_info="yes"
 stack_protector=""
 use_containers="yes"
-gdb_bin=$(command -v "gdb")
+gdb_bin=$(command -v "gdb-multiarch" || command -v "gdb")
 
 if test -e "$source_path/.git"
 then