diff options
author | John Baldwin <jhb@FreeBSD.org> | 2018-10-08 14:47:34 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2018-10-08 14:47:34 -0700 |
commit | 74792ff782431ec6113b9a8a8e85b95f46094c7f (patch) | |
tree | a026f6d0b5ecb9afad8a85b0d84a168c5befd016 /gdb/configure.nat | |
parent | ed65e20bc7cd18406081cf5ba29f9c9bccd4e52f (diff) | |
download | gdb-74792ff782431ec6113b9a8a8e85b95f46094c7f.zip gdb-74792ff782431ec6113b9a8a8e85b95f46094c7f.tar.gz gdb-74792ff782431ec6113b9a8a8e85b95f46094c7f.tar.bz2 |
Add native target for FreeBSD/riscv.
gdb/ChangeLog:
* Makefile.in (ALLDEPFILES): Add riscv-fbsd-nat.c.
* NEWS: Mention new FreeBSD/riscv native configuration.
* configure.host: Add riscv*-*-freebsd*.
* configure.nat: Likewise.
* riscv-fbsd-nat.c: New file.
gdb/doc/ChangeLog:
* gdb.texinfo (Contributors): Add SRI International and University
of Cambridge for FreeBSD/riscv.
Diffstat (limited to 'gdb/configure.nat')
-rw-r--r-- | gdb/configure.nat | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/configure.nat b/gdb/configure.nat index 10bf65f..200b716 100644 --- a/gdb/configure.nat +++ b/gdb/configure.nat @@ -177,6 +177,10 @@ case ${gdb_host} in # systems running FreeBSD. NATDEPFILES="${NATDEPFILES} ppc-fbsd-nat.o bsd-kvm.o" ;; + riscv*) + # Host: FreeBSD/riscv + NATDEPFILES="${NATDEPFILES} riscv-fbsd-nat.o" + ;; sparc) # Host: FreeBSD/sparc64 NATDEPFILES="${NATDEPFILES} sparc-nat.o sparc64-nat.o \ |