From 7a9bd3b4e219c5cd892757f86c2075ec67333903 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 1 Feb 2021 23:51:24 -0500 Subject: sim: erc32/m32c/rl78: add sim_memory_map stub for gdb These ports don't use the common sim core, so they weren't providing a sim_memory_map for gdb, so they failed to link with the new memory map logic added for the sim. Add stubs to fix. --- sim/m32c/ChangeLog | 4 ++++ sim/m32c/gdb-if.c | 6 ++++++ 2 files changed, 10 insertions(+) (limited to 'sim/m32c') diff --git a/sim/m32c/ChangeLog b/sim/m32c/ChangeLog index ed4e072..d4ca114 100644 --- a/sim/m32c/ChangeLog +++ b/sim/m32c/ChangeLog @@ -1,5 +1,9 @@ 2021-02-06 Mike Frysinger + * gdb-if.c (sim_memory_map): Define. + +2021-02-06 Mike Frysinger + * configure: Regenerate. 2021-01-11 Mike Frysinger diff --git a/sim/m32c/gdb-if.c b/sim/m32c/gdb-if.c index 5ada0b0..92e447f 100644 --- a/sim/m32c/gdb-if.c +++ b/sim/m32c/gdb-if.c @@ -707,6 +707,12 @@ sim_complete_command (SIM_DESC sd, const char *text, const char *word) return NULL; } +char * +sim_memory_map (SIM_DESC sd) +{ + return NULL; +} + void sim_info (SIM_DESC sd, int verbose) { -- cgit v1.1