diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/configure.nat | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8b26b46..ce3feaf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2017-06-13 Simon Marchi <simon.marchi@ericsson.com> + + * configure.nat: Factor out AIX bits that are not + architecture-specific. Add fork-inferior.o. + 2017-06-13 Andreas Arnez <arnez@linux.vnet.ibm.com> * dwarf2loc.c (rw_pieced_value): New. Merge logic from... diff --git a/gdb/configure.nat b/gdb/configure.nat index e6da599..b9b9a40 100644 --- a/gdb/configure.nat +++ b/gdb/configure.nat @@ -78,6 +78,9 @@ case ${gdb_host} in mingw*) NATDEPFILES='x86-nat.o x86-dregs.o windows-nat.o' ;; + aix) + NATDEPFILES='fork-inferior.o fork-child.o inf-ptrace.o' + ;; esac # This is where we actually filter by host and host CPU. @@ -88,7 +91,7 @@ case ${gdb_host} in # Host: IBM PowerPC running AIX aix-thread.o is not # listed in NATDEPFILES as it is pulled in by # configure. - NATDEPFILES='fork-child.o inf-ptrace.o rs6000-nat.o' + NATDEPFILES="${NATDEPFILES} rs6000-nat.o" # When compiled with cc, for debugging, this argument # should be passed. We have no idea who our current |