S390: Add symfile-mem

Message ID m3y3mnpubr.fsf@oc1027705133.ibm.com
State New, archived
Headers

Commit Message

Andreas Arnez Nov. 30, 2017, 5:09 p.m. UTC
  For some reason symfile-mem.o is not included in the configuration for
"s390*-*-linux*".  It was added to the configuration of most GNU/Linux
targets with a patch from Andrew Cagney:

  "Add symfile-mem to all linux targets" --
  https://sourceware.org/ml/gdb-patches/2005-02/msg00053.html

But the s390 target was overlooked at that time.  Thus the command
"add-symbol-file-from-memory" is missing and VDSO symbols are not loaded.

This is fixed.

gdb/ChangeLog:

	* configure.tgt (s390*-*-linux*): Add symfile-mem.o.
---
 gdb/configure.tgt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gdb/configure.tgt b/gdb/configure.tgt
index 701ad6c..f720154 100644
--- a/gdb/configure.tgt
+++ b/gdb/configure.tgt
@@ -514,7 +514,7 @@  powerpc*-*-*)
 s390*-*-linux*)
 	# Target: S390 running Linux
 	gdb_target_obs="s390-linux-tdep.o solib-svr4.o linux-tdep.o \
-			linux-record.o"
+			linux-record.o symfile-mem.o"
 	build_gdbserver=yes
 	;;