From patchwork Sat Jul 15 17:20:18 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Baldwin X-Patchwork-Id: 21628 Received: (qmail 41044 invoked by alias); 15 Jul 2017 17:21:49 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 41024 invoked by uid 89); 15 Jul 2017 17:21:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.1 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_SOFTFAIL autolearn=ham version=3.3.2 spammy=Hx-languages-length:1037, H*m:FreeBSD, HX-Greylist:0400, HX-Greylist:EDT X-HELO: mail.baldwin.cx Received: from bigwig.baldwin.cx (HELO mail.baldwin.cx) (96.47.65.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 15 Jul 2017 17:21:46 +0000 Received: from ralph.baldwin.cx.com (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by mail.baldwin.cx (Postfix) with ESMTPSA id D260710AF01; Sat, 15 Jul 2017 13:21:44 -0400 (EDT) From: John Baldwin To: gdb-patches@sourceware.org, coypu@sdf.org Subject: [PATCH 1/4] Fix two NetBSD-specific typos in the configure.nat conversion. Date: Sat, 15 Jul 2017 10:20:18 -0700 Message-Id: <20170715172021.80516-2-jhb@FreeBSD.org> In-Reply-To: <20170715172021.80516-1-jhb@FreeBSD.org> References: <20170715172021.80516-1-jhb@FreeBSD.org> X-IsSubscribed: yes - 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. --- gdb/ChangeLog | 4 ++++ gdb/configure.nat | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1da495ff4c..14cf30b968 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2017-07-15 John Baldwin + + * configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo. + 2017-07-14 Tom Tromey PR rust/21764: diff --git a/gdb/configure.nat b/gdb/configure.nat index 2026ee76f5..b32c9aa849 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