This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] Fix s390-linux native build


Hi Luis,

s390x-ibm-linux
libgdb.a(linux-thread-db.o): In function `find_new_threads_callback':
/root/jkratoch/redhat/gdb-git/gdb/linux-thread-db.c:1460: undefined reference to `linux_proc_get_tgid'

It looks as forgotten to me, config/s390/s390.mh was the only file having
linux-thread-db.o but not having linux-procfs.o.

Checked in.


Thanks,
Jan


http://sourceware.org/ml/gdb-cvs/2011-09/msg00012.html

--- src/gdb/ChangeLog	2011/09/02 21:16:53	1.13297
+++ src/gdb/ChangeLog	2011/09/02 21:40:29	1.13298
@@ -1,3 +1,7 @@
+2011-09-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+	* config/s390/s390.mh (NATDEPFILES): Add linux-procfs.o dependency.
+
 2011-09-02  Matt Rice  <ratmice@gmail.com>
 
 	PR gdb/10720
--- src/gdb/config/s390/s390.mh	2011/07/21 23:46:11	1.18
+++ src/gdb/config/s390/s390.mh	2011/09/02 21:40:30	1.19
@@ -2,6 +2,6 @@
 NAT_FILE= config/nm-linux.h
 NATDEPFILES= inf-ptrace.o fork-child.o corelow.o s390-nat.o \
 	linux-thread-db.o proc-service.o \
-	linux-nat.o linux-osdata.o linux-fork.o
+	linux-nat.o linux-osdata.o linux-fork.o linux-procfs.o
 NAT_CDEPS = $(srcdir)/proc-service.list
 LOADLIBES = -ldl $(RDYNAMIC)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]