Blame SOURCES/gdb-container-rh-pkg.patch

4a80f0
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
4a80f0
From: Fedora GDB patches <invalid@email.com>
4a80f0
Date: Fri, 27 Oct 2017 21:07:50 +0200
4a80f0
Subject: gdb-container-rh-pkg.patch
4a80f0
4a80f0
;; Add messages suggesting more recent RHEL gdbserver (RH BZ 1321114).
4a80f0
;;=fedora
4a80f0
4a80f0
diff --git a/gdb/remote.c b/gdb/remote.c
4a80f0
--- a/gdb/remote.c
4a80f0
+++ b/gdb/remote.c
4a80f0
@@ -14031,7 +14031,17 @@ remote_target::pid_to_exec_file (int pid)
4a80f0
   char *annex = NULL;
4a80f0
 
4a80f0
   if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
4a80f0
-    return NULL;
4a80f0
+    {
4a80f0
+      warning (_("Remote gdbserver does not support determining executable "
4a80f0
+		 "automatically.\n"
4a80f0
+"RHEL <=6.8 and <=7.2 versions of gdbserver do not support such automatic executable detection.\n"
4a80f0
+"The following versions of gdbserver support it:\n"
4a80f0
+"- Upstream version of gdbserver (unsupported) 7.10 or later\n"
4a80f0
+"- Red Hat Developer Toolset (DTS) version of gdbserver from DTS 4.0 or later (only on x86_64)\n"
4a80f0
+"- RHEL-7.3 versions of gdbserver (on any architecture)"
4a80f0
+));
4a80f0
+      return NULL;
4a80f0
+    }
4a80f0
 
4a80f0
   inferior *inf = find_inferior_pid (this, pid);
4a80f0
   if (inf == NULL)