| OLD | NEW |
| 1 # Host: PowerPC64, running Linux | 1 # Host: PowerPC64, running Linux |
| 2 | 2 |
| 3 XM_CLIBS= | 3 XM_CLIBS= |
| 4 | 4 |
| 5 NAT_FILE= config/nm-linux.h | 5 NAT_FILE= config/nm-linux.h |
| 6 NATDEPFILES= inf-ptrace.o fork-child.o \ | 6 NATDEPFILES= inf-ptrace.o fork-child.o \ |
| 7 ppc-linux-nat.o proc-service.o linux-thread-db.o \ | 7 ppc-linux-nat.o proc-service.o linux-thread-db.o \ |
| 8 » linux-nat.o linux-osdata.o linux-fork.o linux-procfs.o | 8 » linux-nat.o linux-osdata.o linux-fork.o linux-procfs.o linux-ptrace.o |
| 9 NAT_CDEPS = $(srcdir)/proc-service.list | 9 NAT_CDEPS = $(srcdir)/proc-service.list |
| 10 | 10 |
| 11 # The PowerPC has severe limitations on TOC size, and uses them even | 11 # The PowerPC has severe limitations on TOC size, and uses them even |
| 12 # for non-PIC code. GDB overflows those tables when compiling with | 12 # for non-PIC code. GDB overflows those tables when compiling with |
| 13 # -mfull-toc (the default), so we need to ask GCC to use as few TOC | 13 # -mfull-toc (the default), so we need to ask GCC to use as few TOC |
| 14 # entries as possible. | 14 # entries as possible. |
| 15 MH_CFLAGS= -mminimal-toc | 15 MH_CFLAGS= -mminimal-toc |
| 16 | 16 |
| 17 # The dynamically loaded libthread_db needs access to symbols in the | 17 # The dynamically loaded libthread_db needs access to symbols in the |
| 18 # gdb executable. | 18 # gdb executable. |
| 19 LOADLIBES= -ldl $(RDYNAMIC) | 19 LOADLIBES= -ldl $(RDYNAMIC) |
| OLD | NEW |