diff options
author | Stan Shebs <shebs@apple.com> | 2001-10-24 03:43:02 +0000 |
---|---|---|
committer | Stan Shebs <shebs@gcc.gnu.org> | 2001-10-24 03:43:02 +0000 |
commit | b000e64f5252166dbed91ce6c292eb74f7062f36 (patch) | |
tree | 83819dbff5e2f1b474f5bffb8722280f58059ac2 /gcc | |
parent | dbff21c5205da06d4a40687b136b80edec6b4d9c (diff) | |
download | gcc-b000e64f5252166dbed91ce6c292eb74f7062f36.zip gcc-b000e64f5252166dbed91ce6c292eb74f7062f36.tar.gz gcc-b000e64f5252166dbed91ce6c292eb74f7062f36.tar.bz2 |
x-darwin: Use -no-cpp-precomp instead of -traditional-cpp in first-stage compilation.
* config/rs6000/x-darwin: Use -no-cpp-precomp instead of
-traditional-cpp in first-stage compilation.
From-SVN: r46457
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/x-darwin | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 070f822..e58637f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-10-23 Stan Shebs <shebs@apple.com> + + * config/rs6000/x-darwin: Use -no-cpp-precomp instead of + -traditional-cpp in first-stage compilation. + Tue Oct 23 21:45:40 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> * gensupport.c (target_flags): Add. diff --git a/gcc/config/rs6000/x-darwin b/gcc/config/rs6000/x-darwin index f2b8c94..0f2b636 100644 --- a/gcc/config/rs6000/x-darwin +++ b/gcc/config/rs6000/x-darwin @@ -1,5 +1,5 @@ # The spiffy cpp-precomp chokes on some legitimate constructs in GCC -# sources; use -traditional-cpp to get to GNU cpp. (This is another +# sources; use -no-cpp-precomp to get to GNU cpp. (This is another # peculiarity of Apple's GCC that we hope to get rid of.) -CC = cc -traditional-cpp +CC = cc -no-cpp-precomp |