From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 53636 invoked by alias); 3 Oct 2017 22:04:32 -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 53611 invoked by uid 89); 3 Oct 2017 22:04:32 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=abandoned, Ideally, Hx-languages-length:1245, nail X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 03 Oct 2017 22:04:31 +0000 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 12699C058EAA; Tue, 3 Oct 2017 22:04:30 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 12699C058EAA Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=palves@redhat.com Received: from [127.0.0.1] (ovpn04.gateway.prod.ext.ams2.redhat.com [10.39.146.4]) by smtp.corp.redhat.com (Postfix) with ESMTP id 21B0F5D9CB; Tue, 3 Oct 2017 22:04:28 +0000 (UTC) Subject: Re: [RFC] Replicate src dir in build dir To: Kamil Rytarowski , Yao Qi References: <1505832159-23038-1-git-send-email-yao.qi@linaro.org> <0aca31f3-4604-5630-baba-0584bb9d5c65@redhat.com> <86y3p99uy3.fsf@gmail.com> <06499c43-88b6-06cd-b3d8-4964bbd3b58e@redhat.com> <86a81djoln.fsf@gmail.com> <33e5939d-b8c1-ae61-4910-7492f85fdba8@redhat.com> <113bf9ff-3a7a-0653-eae8-96a1462e2adf@gmx.com> Cc: gdb-patches@sourceware.org From: Pedro Alves Message-ID: Date: Tue, 03 Oct 2017 22:04:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <113bf9ff-3a7a-0653-eae8-96a1462e2adf@gmx.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2017-10/txt/msg00069.txt.bz2 On 10/03/2017 09:16 PM, Kamil Rytarowski wrote: > On 03.10.2017 22:02, Pedro Alves wrote: >> On 09/29/2017 08:23 PM, Yao Qi wrote: >>> + >>> +case "${targ}" in >>> +*-*-freebsd* | *-*-kfreebsd*-gnu) >>> + os_obs="fbsd-tdep.o solib-svr4.o";; >>> +*-*-netbsd* | *-*-knetbsd*-gnu) >>> + os_obs="nbsd-tdep.o solib-svr4.o";; >>> +*-*-openbsd*) >>> + os_obs="obsd-tdep.o solib-svr4.o";; > > There does not exist any GNU/kNetBSD distribution and nobody is doing > it. Please drop it. Well, "does not exist" is a bit misleading, since there's https://www.debian.org/ports/netbsd/ . (I had no idea about it, but google found it...) However, that page does say: This porting effort has long been abandoned. It has had no updates since october 2002. The informations in this page are only for historical purposes. So it really sounds like we could zap it. Ideally that should be a separate commit, with a gdb/NEWS entry change, and we'd drop it everywhere it's mentioned, not just configure.tgt. "git grep knetbsd" finds hits in bfd and ld too, btw. GCC dropped support last year, BTW: https://gcc.gnu.org/ml/gcc-patches/2016-06/msg01370.html which is another nail in the coffin... Thanks, Pedro Alves