Fix building GDB for the M32C by providing a stub sim_info function.
* gdb-if.c (sim_info): Stub function to allow GDB to be built with this simulator.
This commit is contained in:
parent
d89fa914ad
commit
32f25203b4
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2015-08-05 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* gdb-if.c (sim_info): Stub function to allow GDB to be built
|
||||||
|
with this simulator.
|
||||||
|
|
||||||
2015-06-23 Mike Frysinger <vapier@gentoo.org>
|
2015-06-23 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
|
@ -705,3 +705,9 @@ sim_complete_command (SIM_DESC sd, const char *text, const char *word)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
sim_info (SIM_DESC sd, int verbose)
|
||||||
|
{
|
||||||
|
printf ("The m32c minisim doesn't collect any statistics.\n");
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue