* [PATCH] S390: Fix undefined symbol "my_waitpid"
@ 2013-09-10 12:02 Andreas Arnez
2013-09-10 12:31 ` Joel Brobecker
2013-09-10 15:08 ` Ulrich Weigand
0 siblings, 2 replies; 5+ messages in thread
From: Andreas Arnez @ 2013-09-10 12:02 UTC (permalink / raw)
To: gdb-patches; +Cc: Ulrich.Weigand, Luis Machado
Fix the S390 build. When linux-waitpid.o was introduced (see
http://sourceware.org/ml/gdb-patches/2013-08/msg00530.html), it was
forgotten to add it to s390.mh; so that's what this patch does.
2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
* config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
diff --git a/gdb/config/s390/s390.mh b/gdb/config/s390/s390.mh
index a53835c..76d82e5 100644
--- a/gdb/config/s390/s390.mh
+++ b/gdb/config/s390/s390.mh
@@ -2,6 +2,7 @@
NAT_FILE= config/nm-linux.h
NATDEPFILES= inf-ptrace.o fork-child.o s390-nat.o \
linux-thread-db.o proc-service.o \
- linux-nat.o linux-osdata.o linux-fork.o linux-procfs.o linux-ptrace.o
+ linux-nat.o linux-osdata.o linux-fork.o linux-procfs.o linux-ptrace.o \
+ linux-waitpid.o
NAT_CDEPS = $(srcdir)/proc-service.list
LOADLIBES = -ldl $(RDYNAMIC)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] S390: Fix undefined symbol "my_waitpid"
2013-09-10 12:02 [PATCH] S390: Fix undefined symbol "my_waitpid" Andreas Arnez
@ 2013-09-10 12:31 ` Joel Brobecker
2013-09-10 15:08 ` Ulrich Weigand
1 sibling, 0 replies; 5+ messages in thread
From: Joel Brobecker @ 2013-09-10 12:31 UTC (permalink / raw)
To: Andreas Arnez; +Cc: gdb-patches, Ulrich.Weigand, Luis Machado
> Fix the S390 build. When linux-waitpid.o was introduced (see
> http://sourceware.org/ml/gdb-patches/2013-08/msg00530.html), it was
> forgotten to add it to s390.mh; so that's what this patch does.
>
> 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
>
> * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
LGTM. Please go ahead and commit.
Thanks!
--
Joel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] S390: Fix undefined symbol "my_waitpid"
2013-09-10 12:02 [PATCH] S390: Fix undefined symbol "my_waitpid" Andreas Arnez
2013-09-10 12:31 ` Joel Brobecker
@ 2013-09-10 15:08 ` Ulrich Weigand
2013-09-11 11:42 ` Andreas Arnez
2013-09-18 18:39 ` Pedro Alves
1 sibling, 2 replies; 5+ messages in thread
From: Ulrich Weigand @ 2013-09-10 15:08 UTC (permalink / raw)
To: Andreas Arnez; +Cc: gdb-patches, Ulrich.Weigand, Luis Machado
Andreas Arnez wrote:
> Fix the S390 build. When linux-waitpid.o was introduced (see
> http://sourceware.org/ml/gdb-patches/2013-08/msg00530.html), it was
> forgotten to add it to s390.mh; so that's what this patch does.
This happens every now and then, most likely because the s390
files do not have -linux- in their name, unlike all the other
Linux target files.
At some point, it would probably be good to change this. (Maybe
once we're off CVS and can actually do renames without losing
history ...)
> 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
>
> * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
I've checked this in now.
Thanks,
Ulrich
--
Dr. Ulrich Weigand
GNU/Linux compilers and toolchain
Ulrich.Weigand@de.ibm.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] S390: Fix undefined symbol "my_waitpid"
2013-09-10 15:08 ` Ulrich Weigand
@ 2013-09-11 11:42 ` Andreas Arnez
2013-09-18 18:39 ` Pedro Alves
1 sibling, 0 replies; 5+ messages in thread
From: Andreas Arnez @ 2013-09-11 11:42 UTC (permalink / raw)
To: Ulrich Weigand; +Cc: gdb-patches, Ulrich.Weigand, Luis Machado
"Ulrich Weigand" <uweigand@de.ibm.com> writes:
> At some point, it would probably be good to change this. (Maybe
> once we're off CVS and can actually do renames without losing
> history ...)
Right, that's probably a good idea. I'll keep that in mind after source
control has moved to GIT.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] S390: Fix undefined symbol "my_waitpid"
2013-09-10 15:08 ` Ulrich Weigand
2013-09-11 11:42 ` Andreas Arnez
@ 2013-09-18 18:39 ` Pedro Alves
1 sibling, 0 replies; 5+ messages in thread
From: Pedro Alves @ 2013-09-18 18:39 UTC (permalink / raw)
To: Ulrich Weigand; +Cc: Andreas Arnez, gdb-patches, Ulrich.Weigand, Luis Machado
On 09/10/2013 04:07 PM, Ulrich Weigand wrote:
>> Fix the S390 build. When linux-waitpid.o was introduced (see
>> http://sourceware.org/ml/gdb-patches/2013-08/msg00530.html), it was
>> forgotten to add it to s390.mh; so that's what this patch does.
>
> This happens every now and then, most likely because the s390
> files do not have -linux- in their name, unlike all the other
> Linux target files.
Eh, twice in a couple weeks. A similar thing happened with the
cris-linux port just recently:
https://sourceware.org/ml/gdb-patches/2013-09/msg00076.html
Because it didn't have a -linux- file. We ended up
adding a cris-linux-tdep.c file.
> At some point, it would probably be good to change this. (Maybe
> once we're off CVS and can actually do renames without losing
> history ...)
If the cvs rm + cvs add are done in the same commit, AFAIK,
git will identify it as a rename, so we could do it now even, IMO.
--
Pedro Alves
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-09-18 18:39 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-10 12:02 [PATCH] S390: Fix undefined symbol "my_waitpid" Andreas Arnez
2013-09-10 12:31 ` Joel Brobecker
2013-09-10 15:08 ` Ulrich Weigand
2013-09-11 11:42 ` Andreas Arnez
2013-09-18 18:39 ` Pedro Alves
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox