From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1136 invoked by alias); 30 May 2018 00:29:19 -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 1121 invoked by uid 89); 30 May 2018 00:29:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.6 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,UNSUBSCRIBE_BODY autolearn=ham version=3.3.2 spammy=HX-Gm-Message-State:ALKqPwe, H*c:alternative, phone X-HELO: mail-ua0-f176.google.com Received: from mail-ua0-f176.google.com (HELO mail-ua0-f176.google.com) (209.85.217.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 30 May 2018 00:29:17 +0000 Received: by mail-ua0-f176.google.com with SMTP id v17-v6so11270799uak.6 for ; Tue, 29 May 2018 17:29:16 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=GITTh+ehD4HeAmZ225i21+A4eQtylBtjEowu8cfXyH4=; b=kpqZ+6dHsWxpyLfmR3LKUiiFkO2hD7PAuXuOjvjCjIk77hk0/h/hIlsoRFVutRIfHV 5dFYCv6bogBRWwRrYY8r/GTX/bT5vi0s/ZxPvniH6qWxILCvasP17wkYydTQPp4/188s et4w0C0rt7d3AgRxoc8hONvjAo3lsi/hdOOfaAptwRz9/zQtPy4GpbGrJ+1XJ8r1cDM/ Q/ZSJ4V7S+qKMBKnwk+z8kVjMxuEomMiTneG6B0qMjQlaDxSraprU1tva6K/W1VFRri8 rQDhiZHVH0+kooAE+s2dtj2cQBb2aGT7CVVaa1KRU06RUtE+Tw0evtWtzNxkFhIzr3Vp z7oQ== X-Gm-Message-State: ALKqPwe+WHr6eVZTsbigT76D3iqUmYMdsoiKDjcU10eP2YQwM5pXPhcN tz8gsSTPLc5huPs55cA59OXy3p7VbgsMF21RQNQ= X-Google-Smtp-Source: ADUXVKJFnXuaAGLukk46FASqSUMRoO/IFOPfZPsaG1dZiqpnqH7GDJHJA4EiwKDR1hEpaRQZfkr1lohjd6sDmc83yLs= X-Received: by 2002:ab0:1249:: with SMTP id s9-v6mr421091uac.16.1527640155278; Tue, 29 May 2018 17:29:15 -0700 (PDT) MIME-Version: 1.0 References: <1527606961-21339-1-git-send-email-simon.marchi@ericsson.com> In-Reply-To: <1527606961-21339-1-git-send-email-simon.marchi@ericsson.com> From: Stafford Horne Date: Wed, 30 May 2018 13:57:00 -0000 Message-ID: Subject: Re: [PATCH] Add or1k target to --enable-targets=all To: Simon Marchi Cc: GDB patches Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2018-05/txt/msg00783.txt.bz2 This looks good to me. Sorry for HTML mail I'm on the phone. FYI i have been working on an openrisc gcc port rewrite to get around a copyright issue in the old port. I hope it will finally be upstream soon. -stafford On Wed, May 30, 2018, 12:16 AM Simon Marchi wrote: > The or1k-tdep.o object is missing from the ALL_TARGET_OBS, which means > it's not currently included in an --enable-targets=all build. > > gdb/ChangeLog: > > * Makefile.in (ALL_TARGET_OBS): Add or1k-tdep.o. > --- > gdb/Makefile.in | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/gdb/Makefile.in b/gdb/Makefile.in > index 5b650c6..627944f 100644 > --- a/gdb/Makefile.in > +++ b/gdb/Makefile.in > @@ -749,6 +749,7 @@ ALL_TARGET_OBS = \ > nios2-tdep.o \ > nto-tdep.o \ > obsd-tdep.o \ > + or1k-tdep.o \ > ppc-fbsd-tdep.o \ > ppc-linux-tdep.o \ > ppc-nbsd-tdep.o \ > -- > 2.7.4 > >