diff options
author | Luis Machado <luisgpm@br.ibm.com> | 2011-08-24 12:07:28 +0000 |
---|---|---|
committer | Luis Machado <luisgpm@br.ibm.com> | 2011-08-24 12:07:28 +0000 |
commit | 13da1c9782f523debe697aa1415b7b4f96fe4f93 (patch) | |
tree | 0cc8eb2413196e9f8c4af3cb2e4e1d7f0524add3 /gdb/config/powerpc | |
parent | f040079fa2855244f39a6a39d6f03a4e80128d6d (diff) | |
download | gdb-13da1c9782f523debe697aa1415b7b4f96fe4f93.zip gdb-13da1c9782f523debe697aa1415b7b4f96fe4f93.tar.gz gdb-13da1c9782f523debe697aa1415b7b4f96fe4f93.tar.bz2 |
Move common linux procfs code to common/
Diffstat (limited to 'gdb/config/powerpc')
-rw-r--r-- | gdb/config/powerpc/linux.mh | 2 | ||||
-rw-r--r-- | gdb/config/powerpc/ppc64-linux.mh | 2 | ||||
-rw-r--r-- | gdb/config/powerpc/spu-linux.mh | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/gdb/config/powerpc/linux.mh b/gdb/config/powerpc/linux.mh index 49fac1d..0ae9368 100644 --- a/gdb/config/powerpc/linux.mh +++ b/gdb/config/powerpc/linux.mh @@ -5,7 +5,7 @@ XM_CLIBS= NAT_FILE= config/nm-linux.h NATDEPFILES= inf-ptrace.o fork-child.o \ ppc-linux-nat.o proc-service.o linux-thread-db.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) diff --git a/gdb/config/powerpc/ppc64-linux.mh b/gdb/config/powerpc/ppc64-linux.mh index c822e83..bf1bb5b 100644 --- a/gdb/config/powerpc/ppc64-linux.mh +++ b/gdb/config/powerpc/ppc64-linux.mh @@ -5,7 +5,7 @@ XM_CLIBS= NAT_FILE= config/nm-linux.h NATDEPFILES= inf-ptrace.o fork-child.o \ ppc-linux-nat.o proc-service.o linux-thread-db.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 # The PowerPC has severe limitations on TOC size, and uses them even diff --git a/gdb/config/powerpc/spu-linux.mh b/gdb/config/powerpc/spu-linux.mh index 068d294..f6e7396 100644 --- a/gdb/config/powerpc/spu-linux.mh +++ b/gdb/config/powerpc/spu-linux.mh @@ -3,5 +3,6 @@ # This implements a 'pseudo-native' GDB running on the # PPU side of the Cell BE and debugging the SPU side. -NATDEPFILES = spu-linux-nat.o fork-child.o inf-ptrace.o +NATDEPFILES = spu-linux-nat.o fork-child.o inf-ptrace.o \ + linux-procfs.o |