From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id bDtOO9oq52D7AQAAWB0awg (envelope-from ) for ; Thu, 08 Jul 2021 12:42:02 -0400 Received: by simark.ca (Postfix, from userid 112) id E44BC1F1F2; Thu, 8 Jul 2021 12:42:02 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 25EDD1E54D for ; Thu, 8 Jul 2021 12:42:02 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 9C8103AA7C85 for ; Thu, 8 Jul 2021 16:42:01 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9C8103AA7C85 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1625762521; bh=nx3WGABL4CIe7YudMm95MCZwBvevAS5lqFXNcchszY4=; h=Date:To:In-Reply-To:Subject:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=RSkMI4fynrivQfPvTd/dx0pNG8rppeZLrO3XNyXkHcfRF8eZxxAN0wAQakJCvtXRY W4sF4/eAoQ3Nj9OuT1Sx85EOurw8/XKNbQnmttd1P6Q5P/s1vXa34Fs2Ycg0Csimm2 S3elkcUCH+6cwuXvk3S5BObs9yrxk5i2vTnUHqtg= Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id AF6E03939C0C for ; Thu, 8 Jul 2021 16:40:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org AF6E03939C0C Received: from fencepost.gnu.org ([2001:470:142:3::e]:43470) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m1X4D-0007vl-5P; Thu, 08 Jul 2021 12:40:01 -0400 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:4809 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m1X4C-0001P6-NS; Thu, 08 Jul 2021 12:40:01 -0400 Date: Thu, 08 Jul 2021 19:39:48 +0300 Message-Id: <83zguwdajv.fsf@gnu.org> To: Joel Brobecker In-Reply-To: <20210703184833.94F2889AFF@takamaka.home> (message from Joel Brobecker on Sat, 3 Jul 2021 11:48:33 -0700 (PDT)) Subject: Re: GDB 11.0.90 available for testing References: <20210703184833.94F2889AFF@takamaka.home> X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Eli Zaretskii via Gdb-patches Reply-To: Eli Zaretskii Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" > From: Joel Brobecker > Date: Sat, 3 Jul 2021 11:48:33 -0700 (PDT) > > Hello, > > I have just finished creating the gdb-11.0.90 pre-release. > It is available for download at the following location: > > ftp://sourceware.org/pub/gdb/snapshots/branch/gdb-11.0.90.tar.xz > > A gzip'ed version is also available: gdb-11.0.90.tar.gz. > > Please give it a test if you can and report any problems you might find. This builds successfully, with minor problems, on native MS-Windows using mingw.org's MinGW. The minor problems I found are: 1. A compilation warning in Gnulib's select.c -- reported to the Gnulib folks. 2. A compilation warning in symtab.c: CXX symtab.o symtab.c: In member function 'bool info_sources_filter::matches(const char*) const': symtab.c:4247:28: warning: 'to_match' may be used uninitialized in this function [-Wmaybe-uninitialized] 4247 | if (m_c_regexp->exec (to_match, 0, NULL, 0) != 0) | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ I guess we need a 'default:' case there? Or maybe initialize 'to_match' with some suitable value? Thanks.