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 [216.205.24.124]) by sourceware.org (Postfix) with ESMTP id F41503858002 for ; Mon, 29 Mar 2021 13:15:49 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org F41503858002 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-293-Q5xt22PJN7yvIiCWa1SZ5g-1; Mon, 29 Mar 2021 09:15:23 -0400 X-MC-Unique: Q5xt22PJN7yvIiCWa1SZ5g-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id F0F1F84B9A0; Mon, 29 Mar 2021 13:15:21 +0000 (UTC) Received: from localhost (unknown [10.33.36.164]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7CFF55D6A1; Mon, 29 Mar 2021 13:15:21 +0000 (UTC) Date: Mon, 29 Mar 2021 14:15:20 +0100 From: Jonathan Wakely To: Gerald Pfeifer Cc: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: Re: https://github.com/llvm/llvm-project/tree/master/pstl link broken Message-ID: <20210329131520.GZ3008@redhat.com> References: <4790336d-cffc-342f-47e0-7c7280fcda17@pfeifer.com> MIME-Version: 1.0 In-Reply-To: X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: multipart/mixed; boundary="Sosn/fv6aiTyEgxl" Content-Disposition: inline X-Spam-Status: No, score=-14.0 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_LOW, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=unavailable autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libstdc++@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++ mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Mar 2021 13:15:51 -0000 --Sosn/fv6aiTyEgxl Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline On 28/03/21 22:23 +0100, Jonathan Wakely via Libstdc++ wrote: >On Sun, 28 Mar 2021, 22:20 Gerald Pfeifer, wrote: > >> Hi folks, >> >> I noticed http://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html >> has a link to https://github.com/llvm/llvm-project/tree/master/pstl >> which does not exist any more. >> >> Would you mind having a look and updating (or removing) that link? >> > >They renamed the 'master' branch. I'll adjust the link tomorrow. Done by this patch, pushed to master (which I think we should rename). --Sosn/fv6aiTyEgxl Content-Type: text/x-patch; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" commit e19afa0645f19287517a139c0428cfd1f3a63742 Author: Jonathan Wakely Date: Mon Mar 29 14:13:01 2021 libstdc++: Adjust link to PSTL upstream (again) The LLVM project renamed their default branch to 'main'. libstdc++-v3/ChangeLog: * doc/xml/manual/status_cxx2017.xml: Adjust link for PSTL. * doc/html/manual/status.html: Regenerate. diff --git a/libstdc++-v3/doc/xml/manual/status_cxx2017.xml b/libstdc++-v3/doc/xml/manual/status_cxx2017.xml index 7f64c47bdfe..11372bb28b3 100644 --- a/libstdc++-v3/doc/xml/manual/status_cxx2017.xml +++ b/libstdc++-v3/doc/xml/manual/status_cxx2017.xml @@ -1882,7 +1882,7 @@ since C++14 and the implementation is complete. 28.4 Parallel algorithms - Using PSTL + Using PSTL 28.5 --Sosn/fv6aiTyEgxl--