From 5530c021ce01abf368a9cde26b22c4b34f320ee8 Mon Sep 17 00:00:00 2001 From: Rainer Orth Date: Thu, 31 Mar 2022 10:34:52 +0200 Subject: [PATCH] Fix procfs.c compilation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit procfs.c doesn't compile on Solaris: /vol/src/gnu/gdb/hg/master/local/gdb/procfs.c: In member function ‘virtual bool procfs_target::info_proc(const char*, info_proc_what)’: /vol/src/gnu/gdb/hg/master/local/gdb/procfs.c:3302:3: error: ‘gdb_argv’ was not declared in this scope 3302 | gdb_argv built_argv (args); | ^~~~~~~~ /vol/src/gnu/gdb/hg/master/local/gdb/procfs.c:3303:20: error: ‘built_argv’ was not declared in this scope; did you mean ‘buildargv’? 3303 | for (char *arg : built_argv) | ^~~~~~~~~~ | buildargv Fixed by including "gdbsupport/buildargv.h". Tested on amd64-pc-solaris2.11, sparcv9-sun-solaris2.11. --- gdb/procfs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gdb/procfs.c b/gdb/procfs.c index 584833a284e..f6ca1345a21 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -45,6 +45,7 @@ #include "observable.h" #include "gdbsupport/scoped_fd.h" #include "gdbsupport/pathstuff.h" +#include "gdbsupport/buildargv.h" /* This module provides the interface between GDB and the /proc file system, which is used on many versions of Unix -- 2.30.2