From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11446 invoked by alias); 22 Apr 2017 16:34:54 -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 11430 invoked by uid 89); 22 Apr 2017 16:34:53 -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= 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; Sat, 22 Apr 2017 16:34:52 +0000 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 5B74AA08E2; Sat, 22 Apr 2017 16:34:53 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 5B74AA08E2 Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=jan.kratochvil@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 5B74AA08E2 Received: from host1.jankratochvil.net (ovpn-117-182.ams2.redhat.com [10.36.117.182]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 2653D80E89; Sat, 22 Apr 2017 16:26:19 +0000 (UTC) Date: Sat, 22 Apr 2017 16:34:00 -0000 From: Jan Kratochvil To: Sergio Durigan Junior Cc: gdb-patches@sourceware.org, Joel Brobecker Subject: Re: [patch+8.0] release branch: Fix: --enable-werror Message-ID: <20170422162616.GA16968@host1.jankratochvil.net> References: <20170421085204.GA5501@host1.jankratochvil.net> <87y3usv2h5.fsf@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp Content-Disposition: inline In-Reply-To: <87y3usv2h5.fsf@redhat.com> User-Agent: Mutt/1.8.0 (2017-02-23) X-SW-Source: 2017-04/txt/msg00628.txt.bz2 On Sat, 22 Apr 2017 18:20:06 +0200, Sergio Durigan Junior wrote: > On Friday, April 21 2017, Jan Kratochvil wrote: > > gdb-8.0-branch > > ./configure --enable-werror --enable-targets=all > > aarch64-tdep.c:3045:13: error: ‘void selftests::aarch64_process_record_test()’ declared ‘static’ but never defined [-Werror=unused-function] > > arm-tdep.c:9601:13: error: ‘void selftests::arm_record_test()’ declared ‘static’ but never defined [-Werror=unused-function] ... > > Sergio: Shouldn't it be also buildbot-tested? > > Yes, it should. We have an Arch64 builder managed by Yao. It should > be possible to set up builders for the 8.0 branch. FYI no specific arch is required for the builder, it even happened for me on my x86_64. These were *-tdep.c files so --enable-targets=all is enough to trigger it. Sure more archs would make better coverage even for nat/* files. Jan