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.129.124]) by sourceware.org (Postfix) with ESMTPS id 8B5B7384F4B6 for ; Thu, 15 Dec 2022 16:59:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 8B5B7384F4B6 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=1671123555; h=from:from:reply-to: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=43RFIcwaY5eIxz98xa2ilcbtPnCoLCre66CxZs4uSk8=; b=PpuwnJW84fl2+cmhP9zLXjRqlMV6uVVh8mO1QT60DK+oRGvNEsGs0GqXhtqXvLRDFp8lm9 B1TXBMw64FO7MR9c+YDuNEOv04n7CSXgfXV8rpw3T+OSfk1OYqk9RLm0S6ML2GEvc3/G0P 5EJOY9zHDjCqezXLYPItpurZnL7OyBw= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-113-uyCO2h97Mwawudvb7UdT7g-1; Thu, 15 Dec 2022 11:59:13 -0500 X-MC-Unique: uyCO2h97Mwawudvb7UdT7g-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 29A6E8533AE; Thu, 15 Dec 2022 16:59:13 +0000 (UTC) Received: from tucnak.zalov.cz (unknown [10.39.195.114]) by smtp.corp.redhat.com (Postfix) with ESMTPS id DD90351FF; Thu, 15 Dec 2022 16:59:12 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.17.1/8.17.1) with ESMTPS id 2BFGx7Cf3330056 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NOT); Thu, 15 Dec 2022 17:59:07 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.17.1/8.17.1/Submit) id 2BFGx6Cl3330055; Thu, 15 Dec 2022 17:59:06 +0100 Date: Thu, 15 Dec 2022 17:59:06 +0100 From: Jakub Jelinek To: "U.Mutlu" Cc: gcc@gcc.gnu.org Subject: Re: [wwwdocs] C++03 missing on https://gcc.gnu.org/projects/cxx-status.html Message-ID: Reply-To: Jakub Jelinek References: <639B50FF.3090104@mutluit.com> MIME-Version: 1.0 In-Reply-To: <639B50FF.3090104@mutluit.com> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Status: No, score=-3.5 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,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: On Thu, Dec 15, 2022 at 05:53:19PM +0100, U.Mutlu wrote: > On this page all ISO C++ standards versions of gcc/g++ are listed, except C++03: > https://gcc.gnu.org/projects/cxx-status.html > > This looks much like an error/omission b/c g++ has the options -std=c++03 > and -std=gnu++03 C++03 isn't a separate standard version, just technical corrigendum and the page mentions it: C++98 Support in GCC GCC has full support for the 1998 C++ standard as modified by the 2003 technical corrigendum -std=c++03 is an alias to -std=c++98 and -std=gnu++03 is an alias to -std=gnu++98 and the gcc manual explains that. Jakub