diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2023-04-03 14:49:12 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2023-04-04 15:56:44 +0100 |
commit | 0beaebc0410ab5fb893899aadf7947854e98d19a (patch) | |
tree | 20584efb3fbf121c1204585c5fd5b29ad0bb18b1 | |
parent | b846ad627e393182ccda78d0abd8da72032b04b5 (diff) | |
download | qemu-0beaebc0410ab5fb893899aadf7947854e98d19a.zip qemu-0beaebc0410ab5fb893899aadf7947854e98d19a.tar.gz qemu-0beaebc0410ab5fb893899aadf7947854e98d19a.tar.bz2 |
gdbstub: don't report auxv feature unless on Linux
The later handler if conditionally compiled only for Linux but we
forgot to ensure we don't advertise it lest we confuse our BSD
brethren.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Fixes: 51c623b0de ("gdbstub: add support to Xfer:auxv:read: packet")
Reported-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Warner Losh <imp@bsdimp.com>
Tested-by: Warner Losh <imp@bsdimp.com>
Message-Id: <20230403134920.2132362-4-alex.bennee@linaro.org>
-rw-r--r-- | gdbstub/gdbstub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbstub/gdbstub.c b/gdbstub/gdbstub.c index 2a66371..0760d78 100644 --- a/gdbstub/gdbstub.c +++ b/gdbstub/gdbstub.c @@ -1468,7 +1468,7 @@ static void handle_query_supported(GArray *params, void *user_ctx) ";ReverseStep+;ReverseContinue+"); } -#ifdef CONFIG_USER_ONLY +#if defined(CONFIG_USER_ONLY) && defined(CONFIG_LINUX) if (gdbserver_state.c_cpu->opaque) { g_string_append(gdbserver_state.str_buf, ";qXfer:auxv:read+"); } |