diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-01-25 11:46:45 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-01-25 11:46:45 +0000 |
commit | 566626fa4d304dee56adbefb82edc25d94c0dfa9 (patch) | |
tree | 5549d29a700619e690e30cd78dd2daea22bf2bd6 /gdb/Makefile.in | |
parent | f0f207fd1d908a09ce535fe459234bbdcdb10ffd (diff) | |
download | gdb-566626fa4d304dee56adbefb82edc25d94c0dfa9.zip gdb-566626fa4d304dee56adbefb82edc25d94c0dfa9.tar.gz gdb-566626fa4d304dee56adbefb82edc25d94c0dfa9.tar.bz2 |
* sparc-tdep.h (sparc32nbsd_sigcontext_saved_regs): New prototype.
* sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): New
function with code split out from
sparc32nbsd_sigcontext_frame_cache.
(sparc32nbsd_sigcontext_frame_cache): Use
sparc32nbsd_sigcontext_saved_regs.
(_initialize_sparc32nbsd_tdep): Don't register OS ABI handler for
OpenBSD.
* sparcobsd-tdep.c: New file.
* Makefile.in (ALLDEPFILES): Add sparcobsd-tdep.c.
(sparcobsd-tdep.o): New dependency.
* configure.tgt (sparc-*-openbsd*): Set gdb_target to obsd.
* config/sparc/obsd.mt: New file.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 5883f80..55bfc4b 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1328,7 +1328,7 @@ ALLDEPFILES = \ sparc64-linux-tdep.c sparc64-nat.c sparc64-sol2-tdep.c \ sparc64-tdep.c sparc64fbsd-nat.c sparc64fbsd-tdep.c \ sparc64nbsd-nat.c sparc64nbsd-tdep.c sparc64obsd-tdep.c \ - sparcnbsd-nat.c sparcnbsd-tdep.c \ + sparcnbsd-nat.c sparcnbsd-tdep.c sparcobsd-tdep.c \ sun3-nat.c \ symm-tdep.c symm-nat.c \ vax-tdep.c \ @@ -2386,6 +2386,9 @@ sparcnbsd-tdep.o: sparcnbsd-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \ $(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \ $(solib_svr4_h) $(symtab_h) $(trad_frame_h) $(gdb_assert_h) \ $(gdb_string_h) $(sparc_tdep_h) $(nbsd_tdep_h) +sparcobsd-tdep.o: sparcobsd-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \ + $(frame_unwind_h) $(osabi_h) $(solib_svr4_h) $(symtab_h) \ + $(trad_frame_h) $(gdb_assert_h) $(sparc_tdep_h) $(nbsd_tdep_h) sparc-sol2-nat.o: sparc-sol2-nat.c $(defs_h) $(regcache_h) $(gregset_h) \ $(sparc_tdep_h) $(sparc64_tdep_h) sparc-sol2-tdep.o: sparc-sol2-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \ |