This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Tiny Darwin bootstrapping tweak


A near-trivial change to use a recommended flag to Apple's old
compiler when bootstrapping.  Committed to the mainline.

Stan

2001-10-23  Stan Shebs  <shebs@apple.com>

        * config/rs6000/x-darwin: Use -no-cpp-precomp instead of
        -traditional-cpp in first-stage compilation.

Index: config/rs6000/x-darwin
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/rs6000/x-darwin,v
retrieving revision 1.1
diff -c -3 -p -r1.1 x-darwin
*** x-darwin    2000/11/21 03:02:09     1.1
--- x-darwin    2001/10/24 03:38:11
***************
*** 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
  # peculiarity of Apple's GCC that we hope to get rid of.)
  
! CC = cc -traditional-cpp
--- 1,5 ----
  # The spiffy cpp-precomp chokes on some legitimate constructs in GCC
! # 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 -no-cpp-precomp


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]