aboutsummaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-04-16 18:16:36 +0000
committerMike Frysinger <vapier@gentoo.org>2011-04-16 18:16:36 +0000
commitaf9f7da78b3232bfeb4394647b257f7a98b54a29 (patch)
tree2a6392750e5d827443df1670b71f31db46bf0e2e /sim
parent0427acfba0c41b73d1472602c8e41b34f6e89f82 (diff)
downloadfsf-binutils-gdb-af9f7da78b3232bfeb4394647b257f7a98b54a29.zip
fsf-binutils-gdb-af9f7da78b3232bfeb4394647b257f7a98b54a29.tar.gz
fsf-binutils-gdb-af9f7da78b3232bfeb4394647b257f7a98b54a29.tar.bz2
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>
Diffstat (limited to 'sim')
-rw-r--r--sim/arm/ChangeLog4
-rw-r--r--sim/arm/wrapper.c6
-rw-r--r--sim/avr/ChangeLog4
-rw-r--r--sim/avr/interp.c6
-rw-r--r--sim/m32c/ChangeLog4
-rw-r--r--sim/m32c/gdb-if.c6
-rw-r--r--sim/microblaze/ChangeLog4
-rw-r--r--sim/microblaze/interp.c6
-rw-r--r--sim/ppc/ChangeLog4
-rw-r--r--sim/ppc/sim_calls.c5
-rw-r--r--sim/rx/ChangeLog4
-rw-r--r--sim/rx/gdb-if.c6
-rw-r--r--sim/sh/ChangeLog4
-rw-r--r--sim/sh/interp.c6
14 files changed, 69 insertions, 0 deletions
diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog
index 1e07144..471fdab 100644
--- a/sim/arm/ChangeLog
+++ b/sim/arm/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-16 Mike Frysinger <vapier@gentoo.org>
+
+ * wrapper.c (sim_complete_command): New stub function.
+
2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
* communicate.c (MYread_char): Check error return from accept() call
diff --git a/sim/arm/wrapper.c b/sim/arm/wrapper.c
index 504a0e5..b81631d 100644
--- a/sim/arm/wrapper.c
+++ b/sim/arm/wrapper.c
@@ -940,3 +940,9 @@ sim_set_callbacks (ptr)
{
sim_callback = ptr;
}
+
+char **
+sim_complete_command (SIM_DESC sd, char *text, char *word)
+{
+ return NULL;
+}
diff --git a/sim/avr/ChangeLog b/sim/avr/ChangeLog
index a03bde8..c407e0c 100644
--- a/sim/avr/ChangeLog
+++ b/sim/avr/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-16 Mike Frysinger <vapier@gentoo.org>
+
+ * interp.c (sim_complete_command): New stub function.
+
2010-04-14 Mike Frysinger <vapier@gentoo.org>
* interp.c (sim_write): Add const to buffer arg.
diff --git a/sim/avr/interp.c b/sim/avr/interp.c
index 818f04e..c4d7da0 100644
--- a/sim/avr/interp.c
+++ b/sim/avr/interp.c
@@ -1853,3 +1853,9 @@ sim_set_callbacks (host_callback *ptr)
{
callback = ptr;
}
+
+char **
+sim_complete_command (SIM_DESC sd, char *text, char *word)
+{
+ return NULL;
+}
diff --git a/sim/m32c/ChangeLog b/sim/m32c/ChangeLog
index 1a34d71..fe8711b 100644
--- a/sim/m32c/ChangeLog
+++ b/sim/m32c/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-16 Mike Frysinger <vapier@gentoo.org>
+
+ * gdb-if.c (sim_complete_command): New stub function.
+
2011-01-11 Andrew Burgess <aburgess@broadcom.com>
* gdb-if.c (sim_store_register): Update return value to
diff --git a/sim/m32c/gdb-if.c b/sim/m32c/gdb-if.c
index 7da4416..23f378f 100644
--- a/sim/m32c/gdb-if.c
+++ b/sim/m32c/gdb-if.c
@@ -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;
+}
diff --git a/sim/microblaze/ChangeLog b/sim/microblaze/ChangeLog
index a03bde8..c407e0c 100644
--- a/sim/microblaze/ChangeLog
+++ b/sim/microblaze/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-16 Mike Frysinger <vapier@gentoo.org>
+
+ * interp.c (sim_complete_command): New stub function.
+
2010-04-14 Mike Frysinger <vapier@gentoo.org>
* interp.c (sim_write): Add const to buffer arg.
diff --git a/sim/microblaze/interp.c b/sim/microblaze/interp.c
index c247601..78c733d 100644
--- a/sim/microblaze/interp.c
+++ b/sim/microblaze/interp.c
@@ -1089,3 +1089,9 @@ sim_set_callbacks (host_callback *ptr)
{
callback = ptr;
}
+
+char **
+sim_complete_command (SIM_DESC sd, char *text, char *word)
+{
+ return NULL;
+}
diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog
index dc059a8..0558910 100644
--- a/sim/ppc/ChangeLog
+++ b/sim/ppc/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-16 Mike Frysinger <vapier@gentoo.org>
+
+ * sim_calls.c (sim_complete_command): New stub function.
+
2011-02-14 Mike Frysinger <vapier@gentoo.org>
* cap.c (cap_remove): Change zfree to free.
diff --git a/sim/ppc/sim_calls.c b/sim/ppc/sim_calls.c
index 9336516..e80db88 100644
--- a/sim/ppc/sim_calls.c
+++ b/sim/ppc/sim_calls.c
@@ -259,6 +259,11 @@ sim_do_command (SIM_DESC sd, char *cmd)
}
}
+char **
+sim_complete_command (SIM_DESC sd, char *text, char *word)
+{
+ return NULL;
+}
/* Polling, if required */
diff --git a/sim/rx/ChangeLog b/sim/rx/ChangeLog
index f29cb93..2eabd23 100644
--- a/sim/rx/ChangeLog
+++ b/sim/rx/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-16 Mike Frysinger <vapier@gentoo.org>
+
+ * gdb-if.c (sim_complete_command): New stub function.
+
2011-01-11 Andrew Burgess <aburgess@broadcom.com>
* gdb-if.c (sim_store_register): Update return value to
diff --git a/sim/rx/gdb-if.c b/sim/rx/gdb-if.c
index ca41161..95884f0 100644
--- a/sim/rx/gdb-if.c
+++ b/sim/rx/gdb-if.c
@@ -862,3 +862,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;
+}
diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog
index 82ab457..b44b4fc 100644
--- a/sim/sh/ChangeLog
+++ b/sim/sh/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-16 Mike Frysinger <vapier@gentoo.org>
+
+ * interp.c (sim_complete_command): New stub function.
+
2010-04-14 Mike Frysinger <vapier@gentoo.org>
* interp.c (sim_write): Add const to buffer arg.
diff --git a/sim/sh/interp.c b/sim/sh/interp.c
index 0d1360f..20239de 100644
--- a/sim/sh/interp.c
+++ b/sim/sh/interp.c
@@ -2787,3 +2787,9 @@ sim_set_callbacks (p)
{
callback = p;
}
+
+char **
+sim_complete_command (SIM_DESC sd, char *text, char *word)
+{
+ return NULL;
+}