diff options
author | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-03 21:50:12 +0000 |
---|---|---|
committer | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-03 21:50:12 +0000 |
commit | 3c63774df8720dd4251b7479b5dd2e1f6a5c48c2 (patch) | |
tree | ddd032bce676147a8ee0b959e5656361375f95cf /gcc | |
parent | c1131678e0818650c9ddf7489fd00d8dbc2c4467 (diff) | |
download | gcc-3c63774df8720dd4251b7479b5dd2e1f6a5c48c2.tar.gz |
* config/darwin.h (APPLE_CC): Remove, not meaningful in FSF GCC.
(STRINGIFY_THIS, REALLY_STRINGIFY): Remove.
(CPP_SPEC): Remove insertion of APPLE_CC definition.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55222 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/darwin.h | 14 |
2 files changed, 7 insertions, 13 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6f8b48be945..328ea9f2434 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-07-03 Stan Shebs <shebs@apple.com> + + * config/darwin.h (APPLE_CC): Remove, not meaningful in FSF GCC. + (STRINGIFY_THIS, REALLY_STRINGIFY): Remove. + (CPP_SPEC): Remove insertion of APPLE_CC definition. + 2002-07-03 Roger Sayle <roger@eyesopen.com> * combine.c (struct_undo): Change types of recorded substitutions diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index 0de241467d3..906951f32e1 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -85,20 +85,8 @@ Boston, MA 02111-1307, USA. */ /* Machine dependent cpp options. */ -/* The sequence here allows us to get a more specific version number - glued into __APPLE_CC__. Normally this number would be updated as - part of submitting to a release engineering organization. */ - -#ifndef APPLE_CC -#define APPLE_CC 999 -#endif - -#define STRINGIFY_THIS(x) # x -#define REALLY_STRINGIFY(x) STRINGIFY_THIS(x) - #undef CPP_SPEC -#define CPP_SPEC "-D__APPLE_CC__=" REALLY_STRINGIFY(APPLE_CC) " \ - %{static:-D__STATIC__}%{!static:-D__DYNAMIC__}" +#define CPP_SPEC "%{static:-D__STATIC__}%{!static:-D__DYNAMIC__}" /* Machine dependent libraries. */ |