From af9f7da78b3232bfeb4394647b257f7a98b54a29 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 16 Apr 2011 18:16:36 +0000 Subject: 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 --- sim/microblaze/interp.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'sim/microblaze/interp.c') 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; +} -- cgit v1.1