From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9156 invoked by alias); 3 May 2014 21:01:20 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 9146 invoked by uid 89); 3 May 2014 21:01:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.2 X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Sat, 03 May 2014 21:01:18 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id A0A8A116168; Sat, 3 May 2014 17:01:16 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id pR2vhoH0UxxM; Sat, 3 May 2014 17:01:16 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 75AF3116163; Sat, 3 May 2014 17:01:16 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 14631E1D62; Sat, 3 May 2014 17:01:15 -0400 (EDT) Date: Sat, 03 May 2014 21:01:00 -0000 From: Joel Brobecker To: Mark Kettenis Cc: gdb-patches@sourceware.org, Mark Kettenis Subject: Re: [PUSHED] Enable rthreads support on OpenBSD/powerpc. Message-ID: <20140503210115.GA4381@adacore.com> References: <1399149731-24798-1-git-send-email-mark.kettenis@xs4all.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1399149731-24798-1-git-send-email-mark.kettenis@xs4all.nl> User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2014-05/txt/msg00028.txt.bz2 Hi Mark, On Sat, May 03, 2014 at 10:42:11PM +0200, Mark Kettenis wrote: > From: Mark Kettenis > > gdb/ChangeLog: > > * ppcobsd-nat.c: Include "obsd-nat.h". > (_initialize_ppcobsd_nat): Call obsd_add_target instead of > add_target. > * config/powerpc/obsd.mh (NATDEPFILES): Add obsd-nat.o. Looks like you are missing the ppcobsd-nat.c change... > --- > gdb/ChangeLog | 7 +++++++ > gdb/config/powerpc/obsd.mh | 2 +- > 2 files changed, 8 insertions(+), 1 deletion(-) > > diff --git a/gdb/ChangeLog b/gdb/ChangeLog > index 303fcec..4f3af0d 100644 > --- a/gdb/ChangeLog > +++ b/gdb/ChangeLog > @@ -1,3 +1,10 @@ > +2014-05-03 Mark Kettenis > + > + * ppcobsd-nat.c: Include "obsd-nat.h". > + (_initialize_ppcobsd_nat): Call obsd_add_target instead of > + add_target. > + * config/powerpc/obsd.mh (NATDEPFILES): Add obsd-nat.o. > + > 2014-05-02 Sergio Durigan Junior > > * stap-probe.c (enum stap_arg_bitness): New enums to represent 8 > diff --git a/gdb/config/powerpc/obsd.mh b/gdb/config/powerpc/obsd.mh > index 51ccc81..2af667a 100644 > --- a/gdb/config/powerpc/obsd.mh > +++ b/gdb/config/powerpc/obsd.mh > @@ -1,4 +1,4 @@ > # Host: OpenBSD/powerpc > -NATDEPFILES= fork-child.o inf-ptrace.o ppcobsd-nat.o bsd-kvm.o > +NATDEPFILES= fork-child.o inf-ptrace.o obsd-nat.o ppcobsd-nat.o bsd-kvm.o > > LOADLIBES= -lkvm > -- > 1.8.5.2 -- Joel