From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22696 invoked by alias); 9 May 2016 08:15:46 -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 22316 invoked by uid 89); 9 May 2016 08:15: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= X-HELO: mail-pf0-f169.google.com Received: from mail-pf0-f169.google.com (HELO mail-pf0-f169.google.com) (209.85.192.169) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 09 May 2016 08:15:30 +0000 Received: by mail-pf0-f169.google.com with SMTP id y69so72874465pfb.1 for ; Mon, 09 May 2016 01:15:30 -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=eLMMV7kW+yDeX+WcJSGYGZmVrrhMKhsoY33vqUnfUp0=; b=LQ5nnivbYPJOhF7jSxvT+QcOW1gxtcj+W9kh/EK40PHmXVYJ29qZjlKygad2Dn8Nm9 dOPsIt3fY/ND0/YxqdkuGs/qOk8qPOg2WQUcgpB2dejVnPB9jE6w/ZbJ5syDKeFysRzw HuR4JpqGSmBrFrGcdKYHnjw39+Y3RVrU2dBYL0BfQt28VhqOKdfFfzIT40LWqIcGpjtE 4L2CoDk5nfYXASzsBcLm02095YaKTSbmwzyRa/vXTqZx7flUUBeSpngZRxShpvB09mw5 iji+htxq+afQ5HgIYUWQyKxnMl0LX6Do8kVtYLJU3nuPPe1Q9+91Jjf7iItTnj7mKVi9 b81g== X-Gm-Message-State: AOPr4FUU9qH5xEaLEaQc0Vk91YFg9kZqR5xvk9ahPTeOmcCqMErnXZS9txCkMG9Vf/MGQw== X-Received: by 10.98.85.195 with SMTP id j186mr48958281pfb.50.1462781728555; Mon, 09 May 2016 01:15:28 -0700 (PDT) Received: from E107787-LIN (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id kb15sm38517258pad.28.2016.05.09.01.15.26 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Mon, 09 May 2016 01:15: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: Mon, 09 May 2016 08:15: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: <861t5bd4vi.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-05/txt/msg00141.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" top-level configure changes should be submitted to gcc-patches list. Once it is approved there, you can commit it to gcc repository and sync configure and configure.ac to binutils-gdb repository. --=20 Yao (=E9=BD=90=E5=B0=A7)