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 /gdb | |
parent | a04b53379a18c66376b4130dc3b4936e6433a0e5 (diff) | |
download | gdb-b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1.zip gdb-b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1.tar.gz gdb-b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1.tar.bz2 |
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.
Diffstat (limited to 'gdb')
-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 5aa7609..b3f9c7b 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 2026ee7..b32c9aa 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 |