public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* [wwwdocs] C++03 missing on https://gcc.gnu.org/projects/cxx-status.html
@ 2022-12-15 16:53 U.Mutlu
  2022-12-15 16:59 ` Jakub Jelinek
  2022-12-19 11:09 ` Jonathan Wakely
  0 siblings, 2 replies; 6+ messages in thread
From: U.Mutlu @ 2022-12-15 16:53 UTC (permalink / raw)
  To: gcc

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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [wwwdocs] C++03 missing on https://gcc.gnu.org/projects/cxx-status.html
  2022-12-15 16:53 [wwwdocs] C++03 missing on https://gcc.gnu.org/projects/cxx-status.html U.Mutlu
@ 2022-12-15 16:59 ` Jakub Jelinek
  2022-12-15 19:50   ` U.Mutlu
  2022-12-19 11:09 ` Jonathan Wakely
  1 sibling, 1 reply; 6+ messages in thread
From: Jakub Jelinek @ 2022-12-15 16:59 UTC (permalink / raw)
  To: U.Mutlu; +Cc: gcc

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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [wwwdocs] C++03 missing on https://gcc.gnu.org/projects/cxx-status.html
  2022-12-15 16:59 ` Jakub Jelinek
@ 2022-12-15 19:50   ` U.Mutlu
  2022-12-15 20:04     ` Jonathan Wakely
  0 siblings, 1 reply; 6+ messages in thread
From: U.Mutlu @ 2022-12-15 19:50 UTC (permalink / raw)
  To: Jakub Jelinek; +Cc: gcc

Jakub Jelinek wrote on 12/15/22 17:59:
> 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


Whatever, but they still could list it like the others and then give the 
explanation you gave.
B/c otherwise it looks like as if the doc writer has forgotten one of the 
historic steps...



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [wwwdocs] C++03 missing on https://gcc.gnu.org/projects/cxx-status.html
  2022-12-15 19:50   ` U.Mutlu
@ 2022-12-15 20:04     ` Jonathan Wakely
  2022-12-15 20:09       ` Jonathan Wakely
  0 siblings, 1 reply; 6+ messages in thread
From: Jonathan Wakely @ 2022-12-15 20:04 UTC (permalink / raw)
  To: U.Mutlu; +Cc: Jakub Jelinek, gcc

[-- Attachment #1: Type: text/plain, Size: 1352 bytes --]

On Thu, 15 Dec 2022, 19:50 U.Mutlu, <um@mutluit.com> wrote:

> Jakub Jelinek wrote on 12/15/22 17:59:
> > 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
>
>
> Whatever, but they still could list it like the others and then give the
> explanation you gave.
> B/c otherwise it looks like as if the doc writer has forgotten one of the
> historic steps...
>

I disagree. If you actually know what the -std=c++03 option means, you
wouldn't think that. And it already says GCC had full support for C++ 1998
*including the 2003 Technical Corrigendum*.

The document doesn't need to be clear to people who have no idea what C++
is, or what the gcc options mean, because that's not the audience it's
intended for




>
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [wwwdocs] C++03 missing on https://gcc.gnu.org/projects/cxx-status.html
  2022-12-15 20:04     ` Jonathan Wakely
@ 2022-12-15 20:09       ` Jonathan Wakely
  0 siblings, 0 replies; 6+ messages in thread
From: Jonathan Wakely @ 2022-12-15 20:09 UTC (permalink / raw)
  To: U.Mutlu; +Cc: Jakub Jelinek, gcc

[-- Attachment #1: Type: text/plain, Size: 1689 bytes --]

On Thu, 15 Dec 2022, 20:04 Jonathan Wakely, <jwakely.gcc@gmail.com> wrote:

>
>
> On Thu, 15 Dec 2022, 19:50 U.Mutlu, <um@mutluit.com> wrote:
>
>> Jakub Jelinek wrote on 12/15/22 17:59:
>> > 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
>>
>>
>> Whatever, but they still could list it like the others and then give the
>> explanation you gave.
>> B/c otherwise it looks like as if the doc writer has forgotten one of the
>> historic steps...
>>
>
> I disagree. If you actually know what the -std=c++03 option means, you
> wouldn't think that. And it already says GCC had full support for C++ 1998
> *including the 2003 Technical Corrigendum*.
>
> The document doesn't need to be clear to people who have no idea what C++
> is, or what the gcc options mean, because that's not the audience it's
> intended for
>


We could add "The options -std=c++03 and -std=gnu++03 are equivalent to
-std=c++98 and -std=gnu++98, respectively." To the very end. That would not
be as misleading as adding a separate artificial listing for C++03.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [wwwdocs] C++03 missing on https://gcc.gnu.org/projects/cxx-status.html
  2022-12-15 16:53 [wwwdocs] C++03 missing on https://gcc.gnu.org/projects/cxx-status.html U.Mutlu
  2022-12-15 16:59 ` Jakub Jelinek
@ 2022-12-19 11:09 ` Jonathan Wakely
  1 sibling, 0 replies; 6+ messages in thread
From: Jonathan Wakely @ 2022-12-19 11:09 UTC (permalink / raw)
  To: U.Mutlu; +Cc: gcc

On Thu, 15 Dec 2022 at 16:54, U.Mutlu <um@mutluit.com> 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

Hi,

If you're going to email public mailing lists, please ensure that your
mail server will actually accept replies:

The recipient server did not accept our requests to connect. Learn
more at https://support.google.com/mail/answer/7720 [mail.mutluit.com.
195.201.130.20: timed out] [mutluit.com. 195.201.130.20: timed out]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-12-19 11:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-15 16:53 [wwwdocs] C++03 missing on https://gcc.gnu.org/projects/cxx-status.html U.Mutlu
2022-12-15 16:59 ` Jakub Jelinek
2022-12-15 19:50   ` U.Mutlu
2022-12-15 20:04     ` Jonathan Wakely
2022-12-15 20:09       ` Jonathan Wakely
2022-12-19 11:09 ` Jonathan Wakely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).