diff options
author | Scott Bambrough <scottb@netwinder.org> | 2000-04-05 15:38:05 +0000 |
---|---|---|
committer | Scott Bambrough <scottb@netwinder.org> | 2000-04-05 15:38:05 +0000 |
commit | faf5f7ad8ab04c5999181c464f045b077948a4fa (patch) | |
tree | 7260f9a3a3827a21eb16f22bb5f0a8ebe540cb58 /gdb/config/arm | |
parent | 79bd78bef5665b6bf7760d1c5328a9ae6ecb36fd (diff) | |
download | gdb-faf5f7ad8ab04c5999181c464f045b077948a4fa.zip gdb-faf5f7ad8ab04c5999181c464f045b077948a4fa.tar.gz gdb-faf5f7ad8ab04c5999181c464f045b077948a4fa.tar.bz2 |
Unable to build x86 hosted debugger for ARM Linux, due to missing target
dependencies. Created ARM Linux specific arm-linux-tdep.c file and moved
missing code into it from arm-linux-nat.c.
2000-04-05 Scott Bambrough <scottb@netwinder.org>
* arm-linux-tdep.c: New file.
* arm-linux-nat.c (fetch_fpregs): Remove unused code.
(arm_get_longjmp_target): Moved it and all defines
it uses to arm-linux-tdep.c.
(arm_linux_extract_return_value): Moved to
arm-linux-tdep.c.
* config/arm/linux.mt: Add arm-linux-tdep.c to TDEPFILES.
Diffstat (limited to 'gdb/config/arm')
-rw-r--r-- | gdb/config/arm/linux.mt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/config/arm/linux.mt b/gdb/config/arm/linux.mt index b85ae48..4939d56 100644 --- a/gdb/config/arm/linux.mt +++ b/gdb/config/arm/linux.mt @@ -1,5 +1,5 @@ # Target: ARM based machine running GNU/Linux TM_FILE= tm-linux.h -TDEPFILES= arm-tdep.o +TDEPFILES= arm-tdep.o arm-linux-tdep.o GDBSERVER_DEPFILES= low-linux.o |