sim: add sim_complete_command stubs for non-common-using ports
For the ports that don't use the common/ subdir, we need to add stub funcs to them to avoid build failures with gdb and command completion. These do not implement the actual completion functionality ... any port that wants that can either convert to the common/ subdir, or fill out the function on their own time. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
0427acfba0
commit
af9f7da78b
14 changed files with 69 additions and 0 deletions
|
@ -703,3 +703,9 @@ sim_do_command (SIM_DESC sd, char *cmd)
|
|||
printf ("The 'sim' command expects either 'trace' or 'verbose'"
|
||||
" as a subcommand.\n");
|
||||
}
|
||||
|
||||
char **
|
||||
sim_complete_command (SIM_DESC sd, char *text, char *word)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue