diff options
author | Franz Sirl <Franz.Sirl-kernel@lauterbach.com> | 2002-07-30 20:40:20 +0000 |
---|---|---|
committer | Franz Sirl <sirl@gcc.gnu.org> | 2002-07-30 20:40:20 +0000 |
commit | 60b8aa9433f6adbdc91d82545b94fab0350b3030 (patch) | |
tree | 87254db607795a89fe463235a2497cc3790ea724 /gcc | |
parent | 714fb7104baa1579f4a0d4f34a8e773f52068b31 (diff) | |
download | gcc-60b8aa9433f6adbdc91d82545b94fab0350b3030.zip gcc-60b8aa9433f6adbdc91d82545b94fab0350b3030.tar.gz gcc-60b8aa9433f6adbdc91d82545b94fab0350b3030.tar.bz2 |
gcc.c (cpp_unique_options): Define __GXX_ABI_VERSION, bump it to 101.
gcc/
* gcc.c (cpp_unique_options): Define __GXX_ABI_VERSION, bump it to 101.
gcc/cp/
* lang-specs.h: Remove __GXX_ABI_VERSION, moved to gcc.c.
From-SVN: r55880
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/lang-specs.h | 3 | ||||
-rw-r--r-- | gcc/gcc.c | 2 |
4 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a7e5a6f..cb7797f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-07-30 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> + + * gcc.c (cpp_unique_options): Define __GXX_ABI_VERSION, bump it to 101. + 2002-07-30 Richard Sandiford <rsandifo@redhat.com> * config/mips/mips.h (SUBTARGET_ASM_DEBUGGING_SPEC): Fix typo. diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index ca62731..1b88fc5 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2002-07-30 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> + + * lang-specs.h: Remove __GXX_ABI_VERSION, moved to gcc.c. + 2002-07-30 Gabriel Dos Reis <gdr@nerim.net> * cp-tree.h (VF_DERIVED_VALUE): Restore from previous deletion. diff --git a/gcc/cp/lang-specs.h b/gcc/cp/lang-specs.h index 419fa92..f35ff71 100644 --- a/gcc/cp/lang-specs.h +++ b/gcc/cp/lang-specs.h @@ -38,7 +38,6 @@ Boston, MA 02111-1307, USA. */ "%{E|M|MM:cc1plus -E %{!no-gcc:-D__GNUG__=%v1}\ %{!Wno-deprecated:-D__DEPRECATED}\ %{!fno-exceptions:-D__EXCEPTIONS}\ - -D__GXX_ABI_VERSION=100\ %{ansi:-D__STRICT_ANSI__ -trigraphs -$} %(cpp_options) %2\ %(cpp_debug_options)}\ %{!E:%{!M:%{!MM:\ @@ -46,7 +45,6 @@ Boston, MA 02111-1307, USA. */ %{!no-gcc:-D__GNUG__=%v1}\ %{!Wno-deprecated:-D__DEPRECATED}\ %{!fno-exceptions:-D__EXCEPTIONS}\ - -D__GXX_ABI_VERSION=100\ %{ansi:-D__STRICT_ANSI__ -trigraphs -$}\ %(cpp_options) %2 %b.ii \n}\ cc1plus %{save-temps:-fpreprocessed %b.ii}\ @@ -54,7 +52,6 @@ Boston, MA 02111-1307, USA. */ %{!no-gcc:-D__GNUG__=%v1} \ %{!Wno-deprecated:-D__DEPRECATED}\ %{!fno-exceptions:-D__EXCEPTIONS}\ - -D__GXX_ABI_VERSION=100\ %{ansi:-D__STRICT_ANSI__}}\ %{ansi:-trigraphs -$}\ %(cc1_options) %2 %{+e1*}\ @@ -675,7 +675,7 @@ static const char *cpp_unique_options = %{MMD:-MMD %W{!o: %b.d}%W{o*:%.d%*}}\ %{M} %{MM} %W{MF*} %{MG} %{MP} %{MQ*} %{MT*}\ %{!E:%{!M:%{!MM:%{MD|MMD:%{o*:-MQ %*}}}}}\ - %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2 -D__GNUC_PATCHLEVEL__=%v3}\ + %{!no-gcc:-D__GNUC__=%v1 -D__GNUC_MINOR__=%v2 -D__GNUC_PATCHLEVEL__=%v3 -D__GXX_ABI_VERSION=101}\ %{!undef:%{!ansi:%{!std=*:%p}%{std=gnu*:%p}} %P} %{trigraphs}\ %{remap} %{g3:-dD} %{H} %C %{D*&U*&A*} %{i*} %Z %i\ %{E|M|MM:%W{o*}}"; |