Re: [PATCH v1 21/28] configure: allow user to specify what gdb to use

2020-03-17 Thread Alex Bennée


Peter Maydell  writes:

> On Mon, 16 Mar 2020 at 18:22, Alex Bennée  wrote:
>>
>> This is useful, especially when testing relatively new gdbstub
>> features that might not be in distro packages yet.
>>
>> Signed-off-by: Alex Bennée 
>> Reviewed-by: Richard Henderson 
>> ---
>>  configure | 9 +
>>  1 file changed, 9 insertions(+)
>>
>> diff --git a/configure b/configure
>> index eb49bb6680c..6724158fde1 100755
>> --- a/configure
>> +++ b/configure
>> @@ -303,6 +303,7 @@ libs_qga=""
>>  debug_info="yes"
>>  stack_protector=""
>>  use_containers="yes"
>> +gdb_bin=$(command -v "gdb")
>>
>>  if test -e "$source_path/.git"
>>  then
>> @@ -1588,6 +1589,8 @@ for opt do
>>;;
>>--disable-fuzzing) fuzzing=no
>>;;
>> +  --with-gdb=*) gdb_bin="$optarg"
>> +  ;;
>>*)
>>echo "ERROR: unknown option $opt"
>>echo "Try '$0 --help' for more information"
>> @@ -1773,6 +1776,7 @@ Advanced options (experts only):
>>--enable-plugins
>> enable plugins via shared library loading
>>--disable-containers don't use containers for cross-building
>> +  --with-gdb=GBB-path  gdb to use for gdbstub tests [$gdb_bin]
>
> s/GBB/GDB/. (Also, the only other program we pass to configure
> with "--with-foo=" is git; for make, install, python, sphinx-build,
> smbd, iasl, cc, gcov we just use "--foo=".)

Alright I'll fix that up in the PR.

>
> thanks
> -- PMM


-- 
Alex Bennée



Re: [PATCH v1 21/28] configure: allow user to specify what gdb to use

2020-03-16 Thread Peter Maydell
On Mon, 16 Mar 2020 at 18:22, Alex Bennée  wrote:
>
> This is useful, especially when testing relatively new gdbstub
> features that might not be in distro packages yet.
>
> Signed-off-by: Alex Bennée 
> Reviewed-by: Richard Henderson 
> ---
>  configure | 9 +
>  1 file changed, 9 insertions(+)
>
> diff --git a/configure b/configure
> index eb49bb6680c..6724158fde1 100755
> --- a/configure
> +++ b/configure
> @@ -303,6 +303,7 @@ libs_qga=""
>  debug_info="yes"
>  stack_protector=""
>  use_containers="yes"
> +gdb_bin=$(command -v "gdb")
>
>  if test -e "$source_path/.git"
>  then
> @@ -1588,6 +1589,8 @@ for opt do
>;;
>--disable-fuzzing) fuzzing=no
>;;
> +  --with-gdb=*) gdb_bin="$optarg"
> +  ;;
>*)
>echo "ERROR: unknown option $opt"
>echo "Try '$0 --help' for more information"
> @@ -1773,6 +1776,7 @@ Advanced options (experts only):
>--enable-plugins
> enable plugins via shared library loading
>--disable-containers don't use containers for cross-building
> +  --with-gdb=GBB-path  gdb to use for gdbstub tests [$gdb_bin]

s/GBB/GDB/. (Also, the only other program we pass to configure
with "--with-foo=" is git; for make, install, python, sphinx-build,
smbd, iasl, cc, gcov we just use "--foo=".)

thanks
-- PMM



[PATCH v1 21/28] configure: allow user to specify what gdb to use

2020-03-16 Thread Alex Bennée
This is useful, especially when testing relatively new gdbstub
features that might not be in distro packages yet.

Signed-off-by: Alex Bennée 
Reviewed-by: Richard Henderson 
---
 configure | 9 +
 1 file changed, 9 insertions(+)

diff --git a/configure b/configure
index eb49bb6680c..6724158fde1 100755
--- a/configure
+++ b/configure
@@ -303,6 +303,7 @@ libs_qga=""
 debug_info="yes"
 stack_protector=""
 use_containers="yes"
+gdb_bin=$(command -v "gdb")
 
 if test -e "$source_path/.git"
 then
@@ -1588,6 +1589,8 @@ for opt do
   ;;
   --disable-fuzzing) fuzzing=no
   ;;
+  --with-gdb=*) gdb_bin="$optarg"
+  ;;
   *)
   echo "ERROR: unknown option $opt"
   echo "Try '$0 --help' for more information"
@@ -1773,6 +1776,7 @@ Advanced options (experts only):
   --enable-plugins
enable plugins via shared library loading
   --disable-containers don't use containers for cross-building
+  --with-gdb=GBB-path  gdb to use for gdbstub tests [$gdb_bin]
 
 Optional features, enabled with --enable-FEATURE and
 disabled with --disable-FEATURE, default is enabled if available:
@@ -6734,6 +6738,7 @@ echo "libudev   $libudev"
 echo "default devices   $default_devices"
 echo "plugin support$plugins"
 echo "fuzzing support   $fuzzing"
+echo "gdb   $gdb_bin"
 
 if test "$supported_cpu" = "no"; then
 echo
@@ -7608,6 +7613,10 @@ if test "$plugins" = "yes" ; then
 fi
 fi
 
+if test -n "$gdb_bin" ; then
+echo "HAVE_GDB_BIN=$gdb_bin" >> $config_host_mak
+fi
+
 if test "$tcg_interpreter" = "yes"; then
   QEMU_INCLUDES="-iquote \$(SRC_PATH)/tcg/tci $QEMU_INCLUDES"
 elif test "$ARCH" = "sparc64" ; then
-- 
2.20.1