From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.devel Subject: Re: Emacs pretest 28.1.90 is out Date: Fri, 01 Jul 2022 09:15:43 +0200 Message-ID: <86o7y9xq00.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="13416"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 Cc: emacs-devel@gnu.org To: Stefan Kangas Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Jul 01 09:17:46 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1o7AuQ-0003AU-HJ for ged-emacs-devel@m.gmane-mx.org; Fri, 01 Jul 2022 09:17:46 +0200 Original-Received: from localhost ([::1]:60460 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1o7AuP-0003QT-4p for ged-emacs-devel@m.gmane-mx.org; Fri, 01 Jul 2022 03:17:45 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:52294) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o7Asr-0002eG-JB for emacs-devel@gnu.org; Fri, 01 Jul 2022 03:16:09 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:43514) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o7Asp-00029q-S4; Fri, 01 Jul 2022 03:16:09 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=evNNV0K8nhX2F1Gs6Q36fnxPqppYD7YI750s+CBqgIQ=; b=XEWY6/4/F30BOw/Y0VTf Fw+y9mp1wxo0FIb3JNUNSI3mEuFz1QlTcWNogjE3LCz7+6NZygEgfh5WWPH4HMYWm7R7DiWT4KqgD GUu8c2vxvQVPpXDVX9dlKNhW4bZrbpR5J3bjBDYXSFuDQQya5oecHFe4cUt8CMH842i5WKwS84oxR QJ29UTWBPnn0MqVAsI5bSqduq6fXB9uE3Ab1xFOkQXtA6zryZaANbc57ZwGCyk41dGKEym3+SHeNj Y3Gh7Cv1AXfCLGd+SHx+qYSYWINS8upADmN0l8xjnXIBm2xRveGmV8wm3pf+umLxIqpDbN4A//hZC 3QzUq8+859eJmA==; Original-Received: from p4fe3ee56.dip0.t-ipconnect.de ([79.227.238.86]:63611 helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o7Asl-0007mM-SW; Fri, 01 Jul 2022 03:16:06 -0400 In-Reply-To: (Stefan Kangas's message of "Thu, 30 Jun 2022 05:52:37 -0700") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:291766 Archived-At: Stefan Kangas writes: > The first pretest for what will be the 28.2 release of Emacs (the > extensible text editor) is available at: > > https://alpha.gnu.org/gnu/emacs/pretest/emacs-28.1.90.tar.xz Thanks, builds fine on Win10 with Mingw64 (I ran only ./configure and make). I get only these warnings: CCLD make-docfile.exe CCLD make-fingerprint.exe In function 'main': cc1.exe: warning: '__builtin_memcpy' writing 12 bytes into a region of size between 0 and 7 [-Wstringop-overflow=] In file included from ctags.c:2: etags.c:1429:21: note: destination object of size [0, 7] allocated by 'xmalloc' 1429 | char *cmd = xmalloc (2 * strlen (tagfile) + sizeof "sort -u -o.."); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ etags.c:1435:14: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=] 1435 | *z++ = ' '; | ~~~~~^~~~~ etags.c:1429:21: note: at offset 11 into destination object of size [0, 7] allocated by 'xmalloc' 1429 | char *cmd = xmalloc (2 * strlen (tagfile) + sizeof "sort -u -o.."); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ etags.c:1434:13: warning: 'stpcpy' writing 1 or more bytes into a region of size 0 overflows the destination [-Wstringop-overflow=] 1434 | z = stpcpy (z, tagfile); | ^~~~~~~~~~~~~~~~~~~ etags.c:1429:21: note: at offset 11 into destination object of size [0, 7] allocated by 'xmalloc' 1429 | char *cmd = xmalloc (2 * strlen (tagfile) + sizeof "sort -u -o.."); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ etags.c:1436:9: warning: 'strcpy' writing 1 or more bytes into a region of size 0 overflows the destination [-Wstringop-overflow=] 1436 | strcpy (z, tagfile); | ^~~~~~~~~~~~~~~~~~~ etags.c:1429:21: note: at offset 12 into destination object of size [0, 7] allocated by 'xmalloc' 1429 | char *cmd = xmalloc (2 * strlen (tagfile) + sizeof "sort -u -o.."); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ I can't tell if they can be ignored or not. This is with gcc 12.1.0. Best, Arash