This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Tiny Darwin bootstrapping tweak
- To: gcc-patches at gcc dot gnu dot org
- Subject: Tiny Darwin bootstrapping tweak
- From: Stan Shebs <shebs at apple dot com>
- Date: Tue, 23 Oct 2001 21:01:50 -0700
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