From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 98297 invoked by alias); 1 Jun 2016 10:52:41 -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 98282 invoked by uid 89); 1 Jun 2016 10:52:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=Lin X-HELO: mail-pf0-f194.google.com Received: from mail-pf0-f194.google.com (HELO mail-pf0-f194.google.com) (209.85.192.194) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 01 Jun 2016 10:52:30 +0000 Received: by mail-pf0-f194.google.com with SMTP id f144so3218092pfa.2 for ; Wed, 01 Jun 2016 03:52:29 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=wPr8o6c+896RgaijM8c3NU1XOBC07GWEfi3pCOeye6k=; b=OiIL16ILP58RXk51+QkzPPBEylnxfjIJGgoaGP29x7odXddvFzIFeZtGIdRThxcF+c goC2A30+3PzL7XZPWx4IuPoYDSP3BOlX45IdZ41ePMYhqJHWFOlFuWZdnvfrsqQWksRS dhIBKE2z9pRDlzdhTHMNyDUBHQjkSsLmo518Kd6pnfQ9Jt6LInbROA1zjU+wScNnUIwu qSH6p0+CBu+eRFuam9MuMVdUVDPkI2iJ51hZ6Kqzml9meiKogoja1DjwctEl/wwkZ3dg KalIOK6SV9TYWnWEXWL4zzOx+12z6XkOWOqkNrjb47UCjLNArfD/YGa135L4xeTlQYgd VHJA== X-Gm-Message-State: ALyK8tJHR5lsdhsJ8oVw6XYPPXTqpLHCsvq48SWwjt+q5BmabX+xL9DSGsfUKAr1sja08g== X-Received: by 10.98.1.6 with SMTP id 6mr7384978pfb.155.1464778348341; Wed, 01 Jun 2016 03:52:28 -0700 (PDT) Received: from E107787-LIN (gcc113.osuosl.org. [140.211.9.71]) by smtp.gmail.com with ESMTPSA id yb9sm5922158pab.42.2016.06.01.03.52.25 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Wed, 01 Jun 2016 03:52:27 -0700 (PDT) From: Yao Qi To: Yan-Ting Lin Cc: gdb-patches@sourceware.org Subject: Re: [PATCH v2] AndesTech NDS32 port References: <3561f390-ea41-2ee3-a5a9-d870429497c3@gmail.com> Date: Wed, 01 Jun 2016 10:52:00 -0000 In-Reply-To: <3561f390-ea41-2ee3-a5a9-d870429497c3@gmail.com> (Yan-Ting Lin's message of "Thu, 5 May 2016 15:16:30 +0800") Message-ID: <86d1o1xjtk.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2016-06/txt/msg00014.txt.bz2 Yan-Ting Lin writes: > diff --git a/configure b/configure > index 35f231e..67f71fa 100755 > --- a/configure > +++ b/configure > @@ -3938,7 +3938,7 @@ case "${target}" in > noconfigdirs=3D"$noconfigdirs gprof" > ;; > nds32*-*-*) > - noconfigdirs=3D"$noconfigdirs gdb" > + noconfigdirs=3D"$noconfigdirs" > ;; > nvptx*-*-*) > noconfigdirs=3D"$noconfigdirs target-libssp target-libstdc++-v3 targ= et-libobjc" > diff --git a/configure.ac b/configure.ac > index 74bf58a..f7427b5 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -1274,7 +1274,7 @@ case "${target}" in > noconfigdirs=3D"$noconfigdirs gprof" > ;; > nds32*-*-*) > - noconfigdirs=3D"$noconfigdirs gdb" > + noconfigdirs=3D"$noconfigdirs" > ;; > nvptx*-*-*) > noconfigdirs=3D"$noconfigdirs target-libssp target-libstdc++-v3 targ= et-libobjc" > diff --git a/gdb/Makefile.in b/gdb/Makefile.in As I pointed out in https://sourceware.org/ml/gdb-patches/2016-05/msg00141.= html, don't include top-level configure changes in this patch. Suggestions were given in the last review. --=20 Yao (=E9=BD=90=E5=B0=A7)