diff options
author | John Baldwin <jhb@FreeBSD.org> | 2017-07-15 08:30:40 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2017-07-25 09:40:44 -0700 |
commit | b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1 (patch) | |
tree | a4a019c74d259ffbfd3b84f98f3fc5573de49ff9 | |
parent | Make amd64_x32_init_abi and amd64_init_abi argument constant (diff) | |
download | binutils-gdb-b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1.tar.gz binutils-gdb-b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1.tar.bz2 binutils-gdb-b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1.zip |
Fix two NetBSD-specific typos in the configure.nat conversion.
- Add the '-lkvm' library requirement for NetBSD/sparc64.
- Fix spelling of 'nbsdelf' host.
gdb/Changelog:
* configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/configure.nat | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5aa760971ae..b3f9c7b061e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2017-07-25 John Baldwin <jhb@FreeBSD.org> + + * configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo. + 2017-07-25 Yao Qi <yao.qi@linaro.org> * amd64-tdep.c (amd64_init_abi): Make argument default_tdesc diff --git a/gdb/configure.nat b/gdb/configure.nat index 2026ee76f5b..b32c9aa8494 100644 --- a/gdb/configure.nat +++ b/gdb/configure.nat @@ -345,11 +345,12 @@ case ${gdb_host} in # Host: NetBSD/sparc64 NATDEPFILES="${NATDEPFILES} sparc64-nbsd-nat.o sparc-nat.o \ bsd-kvm.o" + LOADLIBES='-lkvm' ;; esac ;; - nbdself) + nbsdelf) case ${gdb_host_cpu} in arm) # Host: NetBSD/arm |