mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
a3f7a777c6
(ns32k-*-netbsd): use ns32knbsd. * hosts/{nbsd,i386nbsd,ns32knbsd,sparcnbsd}.h: New files, NetBSD host support. * sparcnetbsd.c: New file, adds support for NetBSD/sparc. * config/sparc-nbsd.mt: Likewise. * netbsd.h: New file, definitions common to all netbsd ports. * i386netbsd.c: Use it. * ns32knetbsd.c: Use it. * Makefile.in, configure.in, targets.c, config/i386-nbsd.mt, config/ns32k-nbsd.mt: canonicalize netbsd targets to conform to file/variable naming conventions. * i386netbsd.c: New file, renamed from netbsd386.c. * ns32knetbsd.c: New file, renamed from netbsd532.c.
20 lines
486 B
C
20 lines
486 B
C
/* Sparc running NetBSD */
|
|
|
|
#ifndef hosts_sparcnbsd_h
|
|
#define hosts_sparcnbsd_h
|
|
|
|
#include "hosts/nbsd.h"
|
|
|
|
#define HOST_MACHINE_ARCH bfd_arch_sparc
|
|
#define HOST_BIG_ENDIAN_P
|
|
|
|
#define TRAD_UNIX_CORE_FILE_FAILING_SIGNAL(core_bfd) \
|
|
((core_bfd)->tdata.trad_core_data->u.u_sig)
|
|
#define u_comm u_kproc.kp_proc.p_comm
|
|
#define TRAD_CORE_REGPOS(core_bfd) \
|
|
((bfd_vma)(core_bfd)->tdata.trad_core_data->u.u_kproc.kp_proc.p_md.md_tf)
|
|
|
|
#define CORE_FPU_OFFSET (sizeof(struct trapframe))
|
|
|
|
#endif
|