This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [g++] set __GXX_ABI_VERSION__ to 102
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Benjamin Kosnik <bkoz at redhat dot com>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Thu, 1 Aug 2002 16:53:31 -0400
- Subject: Re: [g++] set __GXX_ABI_VERSION__ to 102
- References: <200208011954.g71JsRg01824@waller.constant.com>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Thu, Aug 01, 2002 at 12:54:27PM -0700, Benjamin Kosnik wrote:
>
> This patch was agreed on yesterday. I'll put something similar on the
> 3.2 branch.
>
> 2002-08-01 Benjamin Kosnik <bkoz@redhat.com>
>
> * c-common.c (cb_register_builtins): Set __GXX_ABI_VERSION__ to 102.
Is the macro __GXX_ABI_VERSION or __GXX_ABI_VERSION__?
Lots of g++.old-deja tests are using the former, 3.2 branch had the former
too and has now as well after Franz moved it to gcc.c, while below
I see __GXX_ABI_VERSION__.
> *** c-common.c 1 Aug 2002 09:08:38 -0000 1.355
> --- c-common.c 1 Aug 2002 20:05:18 -0000
> *************** cb_register_builtins (pfile)
> *** 4732,4738 ****
> cpp_define (pfile, "__EXCEPTIONS");
> if (warn_deprecated)
> cpp_define (pfile, "__DEPRECATED");
> ! cpp_define (pfile, "__GXX_ABI_VERSION__=101");
> }
>
> /* libgcc needs to know this. */
> --- 4732,4738 ----
> cpp_define (pfile, "__EXCEPTIONS");
> if (warn_deprecated)
> cpp_define (pfile, "__DEPRECATED");
> ! cpp_define (pfile, "__GXX_ABI_VERSION__=102");
> }
>
> /* libgcc needs to know this. */
Jakub