From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.CeBiTec.Uni-Bielefeld.DE (smtp.CeBiTec.Uni-Bielefeld.DE [129.70.160.84]) by sourceware.org (Postfix) with ESMTPS id 2001F3858C52 for ; Thu, 19 Jan 2023 12:22:51 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 2001F3858C52 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=CeBiTec.Uni-Bielefeld.DE Authentication-Results: sourceware.org; spf=none smtp.mailfrom=cebitec.uni-bielefeld.de Received: from localhost (localhost [127.0.0.1]) by smtp.CeBiTec.Uni-Bielefeld.DE (Postfix) with ESMTP id 0096EA8C17; Thu, 19 Jan 2023 13:22:50 +0100 (CET) X-Virus-Scanned: amavisd-new at CeBiTec.Uni-Bielefeld.DE Received: from smtp.CeBiTec.Uni-Bielefeld.DE ([127.0.0.1]) by localhost (smtp.cebitec.uni-bielefeld.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1ViaA5pELF_U; Thu, 19 Jan 2023 13:22:49 +0100 (CET) Received: from manam.CeBiTec.Uni-Bielefeld.DE (p508548b7.dip0.t-ipconnect.de [80.133.72.183]) (Authenticated sender: ro) by smtp.CeBiTec.Uni-Bielefeld.DE (Postfix) with ESMTPSA id 87445A84E2; Thu, 19 Jan 2023 13:22:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=CeBiTec.Uni-Bielefeld.DE; s=20200306; t=1674130969; bh=fTIMEcjN3R+Hza9s0XlxZCX5LfqiiXhTJkUCfSq4vfY=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=Vng+qz4+WsNE5Xw60ZNZs9l4XUKiZQukwZKuy6KnTmn63+zaCLqS6aqVRQTUgtfEq VZ3+Nk8avL2cvvRXCQXuvwDr99j58aV5nSQT8YoDECfoqJUuBiMF91MzU8koKcYHBb JHimrbccl7gmMBm4lmzo5oGF7TUBsNepMvTM5Av1P59prcB5OEm5xMdjAK/pXbHgP+ G1ZsjyJB4IOx3Fe6wGITP0Lzgmi70CEs6F9rZv327qOMH/KpjdkICEoqVVbSx5SqAH 5G7AAm9DRRZ+zcWK9GLC/0iqtDujf8fFvfaJfVbuHHuuw38CnQLfECqi1QFjzcJTwT PKh/RINFyshIg== From: Rainer Orth To: Gerald Pfeifer Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH] wwwdocs: Announce Solaris 11.3 obsoletion References: <1875a6a3-ea37-f694-9299-4ffea48934eb@pfeifer.com> Date: Thu, 19 Jan 2023 13:22:49 +0100 In-Reply-To: <1875a6a3-ea37-f694-9299-4ffea48934eb@pfeifer.com> (Gerald Pfeifer's message of "Thu, 19 Jan 2023 11:27:47 +0100 (CET)") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1.90 (usg-unix-v) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Status: No, score=-3794.5 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,GIT_PATCH_0,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --=-=-= Content-Type: text/plain Hi Gerald, >> Btw., I noticed the -gz=zstd addition is listed under Caveats. I don't >> think this belongs here and probably only landed due to the -gz=zlib-gnu >> removal above. > > Agreed. Can you address this on the way? sure: done like so: gcc-13: Move -gz=zstd to General Improvements Rainer -- ----------------------------------------------------------------------------- Rainer Orth, Center for Biotechnology, Bielefeld University --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=gz-zstd.patch diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html index 7047e742..ba42170c 100644 --- a/htdocs/gcc-13/changes.html +++ b/htdocs/gcc-13/changes.html @@ -45,7 +45,6 @@ a work-in-progress.

supported, either.)
  • Legacy debug info compression option -gz=zlib-gnu was removed and the option is ignored right now.
  • -
  • New debug info compression option value -gz=zstd has been added.
  • -Warray-bounds=2 will no longer issue warnings for out of bounds accesses to trailing struct members of one-element array type anymore. Instead it diagnoses accesses to trailing arrays according to @@ -107,6 +106,7 @@ a work-in-progress.

    AddressSanitizer defaults to detect_stack_use_after_return=1 on GNU/Linux targets. For compatibility, it can be disabled with env ASAN_OPTIONS=detect_stack_use_after_return=0.
  • +
  • New debug info compression option value -gz=zstd has been added.
  • Link-time optimization improvements:
      --=-=-=--