From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id A7E013858C74 for ; Fri, 27 Jan 2023 12:21:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org A7E013858C74 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1674822075; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=ud6IFXs3WFYBs9lRHNglJEMIrAOVdEBh2VbYUMeAlAk=; b=X9YjMJ6lXEMt9eSFbUMUa5EIt+Or4vO22sEH/yzkRv3ZhboqIG5thcLkIFPwo6Hs0iMuQr 8+pZ36GRhS63omD44sHHhFHHfak45uEwAJJADuoYIELbkEZ1cYkZo2MMqakPUWGwZ5uWuY Z5R6m5LsRAPT2mocdarRkP3hVyaHLAs= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-588-FuBphO_CMzS61WKNz-FjSQ-1; Fri, 27 Jan 2023 07:21:13 -0500 X-MC-Unique: FuBphO_CMzS61WKNz-FjSQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 960C41C05EB3; Fri, 27 Jan 2023 12:21:13 +0000 (UTC) Received: from localhost (unknown [10.33.36.186]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5AA987AD4; Fri, 27 Jan 2023 12:21:13 +0000 (UTC) Date: Fri, 27 Jan 2023 12:21:12 +0000 From: Jonathan Wakely To: Gerald Pfeifer Cc: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: Re: [pushed] wwwdocs: codingconventions: Update upstream instructions for libstdc++ Message-ID: References: <20230127001617.CE64D33E9E@hamza.pair.com> MIME-Version: 1.0 In-Reply-To: <20230127001617.CE64D33E9E@hamza.pair.com> X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: multipart/mixed; boundary="rzZY6UuDkGRlHVBS" Content-Disposition: inline X-Spam-Status: No, score=-12.2 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_SHORT,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,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: --rzZY6UuDkGRlHVBS Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline On 27/01/23 01:16 +0100, Gerald Pfeifer wrote: >Jonathan (or some other libstdc++ developer), would you mind having a >look at that section of https://gcc.gnu.org/codingconventions.html to >see whether we should do further changes? Oh wow, it's all wrong. I've pushed the patch below, thanks for pointing it out. --rzZY6UuDkGRlHVBS Content-Type: text/x-patch; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" commit 17f88fe2b73fe50b1831ece5dd40bf29151899ab Author: Jonathan Wakely Date: Fri Jan 27 12:13:42 2023 +0000 Replace outdated info about libstdc++-v3/doc files diff --git a/htdocs/codingconventions.html b/htdocs/codingconventions.html index 24365815..7e2a092d 100644 --- a/htdocs/codingconventions.html +++ b/htdocs/codingconventions.html @@ -754,13 +754,13 @@ autoconf-based configury is a local GCC invention. Changes to zlib outside the build system are discouraged, and should be sent upstream first. -
  • libstdc++-v3: In docs/doxygen, comments in *.cfg.in are -partially autogenerated from the -Doxygen tool. In docs/html, -the 27_io/binary_iostream_* files are copies of Usenet postings, and most -of the files in 17_intro are either copied from elsewhere in GCC or the -FSF website, or are autogenerated. These files should not be changed -without prior permission, if at all.
  • +
  • libstdc++-v3: The doc/doxygen/user.cfg.in file is partially autogenerated +from the Doxygen tool (and regenerated +using doxygen -u). +The files in doc/html are generated from the Docbook sources in doc/xml +and should not be changed manually. +The files in doc/xml/gnu are based on the GNU licenses and should not +be changed without prior permission, if at all.
  • libgcc/config/libbid: The master sources come from Intel BID library Intel BID library. --rzZY6UuDkGRlHVBS--