diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2017-11-24 22:03:28 +0100 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2017-11-24 22:03:28 +0100 |
commit | d7fcdff980f113ccf77f8dd2f8fb3de3d6addaa3 (patch) | |
tree | 183a3672e9c9044e790c03daeaaa54f68e86ef9c /gdb | |
parent | 4e25ac038efbe5293885cc75d8a3e08b23da7cc9 (diff) | |
download | gdb-d7fcdff980f113ccf77f8dd2f8fb3de3d6addaa3.zip gdb-d7fcdff980f113ccf77f8dd2f8fb3de3d6addaa3.tar.gz gdb-d7fcdff980f113ccf77f8dd2f8fb3de3d6addaa3.tar.bz2 |
[spu] Fix spu-linux native build
Add missing file to NATDEPFILES.
gdb/ChangeLog:
2017-11-24 Ulrich Weigand <uweigand@de.ibm.com>
* configure.nat <spu-linux>: Add fork-inferior.o to NATDEPFILES.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/configure.nat | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5acd913..48441bd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2017-11-24 Ulrich Weigand <uweigand@de.ibm.com> + + * configure.nat <spu-linux>: Add fork-inferior.o to NATDEPFILES. + 2017-11-24 Philipp Rudo <prudo@linux.vnet.ibm.com> * dtrace-probe.c (dtrace_probe::build_arg_exprs) diff --git a/gdb/configure.nat b/gdb/configure.nat index 14a1b00..962abd6 100644 --- a/gdb/configure.nat +++ b/gdb/configure.nat @@ -482,7 +482,8 @@ case ${gdb_host} in NAT_FILE= NAT_CDEPS= LOADLIBES= - NATDEPFILES='spu-linux-nat.o fork-child.o inf-ptrace.o \ + NATDEPFILES='spu-linux-nat.o \ + inf-ptrace.o fork-child.o fork-inferior.o \ linux-procfs.o linux-ptrace.o linux-waitpid.o \ linux-personality.o linux-namespaces.o' ;; |