The rx simulator doesn't define sim_memory_map and so fails to link
with GDB. Define it now to return NULL, this can be extended later to
return an actual memory map if anyone wants this functionality.
sim/rx/ChangeLog:
* gdb-if.c (sim_memory_map): New function.
+2021-02-08 Andrew Burgess <andrew.burgess@embecosm.com>
+
+ * gdb-if.c (sim_memory_map): New function.
+
2021-02-06 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
{
return NULL;
}
+
+/* Stub this out for now. */
+
+char *
+sim_memory_map (SIM_DESC sd)
+{
+ return NULL;
+}