diff options
author | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-23 01:14:03 +0000 |
---|---|---|
committer | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-04-23 01:14:03 +0000 |
commit | 86648ad2c2cd6de60065736c07b291b278cc5818 (patch) | |
tree | a40056fe9852e2529a197fc1702268c4cc4e8d8a /gcc | |
parent | 284a7b54530ebcd2e1027fe7dd831049e8a8b6f0 (diff) | |
download | gcc-86648ad2c2cd6de60065736c07b291b278cc5818.tar.gz |
* config.gcc (powerpc-*-darwin*): Move the flag in xm-darwin.h
into xm_defines.
* config/rs6000/xm-darwin.h: Remove file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41496 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config.gcc | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/xm-darwin.h | 5 |
3 files changed, 10 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f2a7a3d3ec3..141f4e32179 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-04-22 Stan Shebs <shebs@apple.com> + + * config.gcc (powerpc-*-darwin*): Move the flag in xm-darwin.h + into xm_defines. + * config/rs6000/xm-darwin.h: Remove file. + 2001-04-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * collect2.c (main): Use concat in lieu of xmalloc/sprintf. diff --git a/gcc/config.gcc b/gcc/config.gcc index ed888a91b6d..8459b95d81e 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -2609,8 +2609,11 @@ powerpc-*-darwin*) tm_file="${tm_file} darwin.h rs6000/darwin.h" tm_p_file="${tm_p_file} darwin-protos.h" tmake_file=rs6000/t-darwin - xm_file=rs6000/xm-darwin.h xmake_file=rs6000/x-darwin + # Override the usual setting, since Apple's GCC has lame bugs + # and can't handle the initializers. Someday the bugs will be + # fixed and we can get rid of this silliness. + xm_defines="HAVE_DESIGNATED_INITIALIZERS=0" extra_objs="darwin.o" # Darwin linker does collect2 functionality use_collect2=no diff --git a/gcc/config/rs6000/xm-darwin.h b/gcc/config/rs6000/xm-darwin.h deleted file mode 100644 index cc3a717dedf..00000000000 --- a/gcc/config/rs6000/xm-darwin.h +++ /dev/null @@ -1,5 +0,0 @@ -/* Override the usual setting, since Apple's GCC has lame bugs and - can't handle the initializers. Someday the bugs will be fixed and - we can get rid of this silliness. */ - -#define HAVE_DESIGNATED_INITIALIZERS 0 |