diff options
author | John Baldwin <jhb@FreeBSD.org> | 2017-08-10 11:00:42 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2017-09-06 09:42:08 -0700 |
commit | 351787dd4cb8439c0b49472648dd97ebedb5f575 (patch) | |
tree | 4afb415637a40db078b8a219e3df09ea2279fe50 /gdb/configure.nat | |
parent | c0f84956d0df0f004e31a987ecc77ea0d293e62c (diff) | |
download | gdb-351787dd4cb8439c0b49472648dd97ebedb5f575.zip gdb-351787dd4cb8439c0b49472648dd97ebedb5f575.tar.gz gdb-351787dd4cb8439c0b49472648dd97ebedb5f575.tar.bz2 |
Add native target for FreeBSD/aarch64.
gdb/ChangeLog:
* Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
* NEWS: Mention new FreeBSD/mips native configuration.
* configure.host: Add aarch64*-*-freebsd*.
* configure.nat: Likewise.
* aarch64-fbsd-nat.c: New file.
Diffstat (limited to 'gdb/configure.nat')
-rw-r--r-- | gdb/configure.nat | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/configure.nat b/gdb/configure.nat index b1dda30..8a01f4b 100644 --- a/gdb/configure.nat +++ b/gdb/configure.nat @@ -144,6 +144,11 @@ case ${gdb_host} in ;; fbsd) case ${gdb_host_cpu} in + aarch64) + # Host: FreeBSD/aarch64 + NATDEPFILES="${NATDEPFILES} aarch64-fbsd-nat.o" + LOADLIBES= + ;; i386) # Host: FreeBSD/i386 NATDEPFILES="${NATDEPFILES} x86-nat.o x86-dregs.o \ |