diff options
author | Stan Shebs <shebs@apple.com> | 2005-02-16 21:54:47 +0000 |
---|---|---|
committer | Stan Shebs <shebs@gcc.gnu.org> | 2005-02-16 21:54:47 +0000 |
commit | f0b81cbc9f1eca010fed269e210f776186629d6c (patch) | |
tree | 3fcc3a912471c04a42fa87a76a250efd84f44d2c /gcc/config.gcc | |
parent | 25c62e247583f47dfab4306a66da53502c0b38c0 (diff) | |
download | gcc-f0b81cbc9f1eca010fed269e210f776186629d6c.zip gcc-f0b81cbc9f1eca010fed269e210f776186629d6c.tar.gz gcc-f0b81cbc9f1eca010fed269e210f776186629d6c.tar.bz2 |
config.gcc (powerpc-*-darwin*): Use fragment for Darwin 8 or later.
* config.gcc (powerpc-*-darwin*): Use fragment for Darwin 8 or later.
* config/rs6000/t-darwin8: New, for 64-bit multilib.
From-SVN: r95118
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 51300e2..0bbd958 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1549,6 +1549,11 @@ powerpc-*-beos*) powerpc-*-darwin*) tm_file="${tm_file} rs6000/darwin.h" tmake_file="${tmake_file} rs6000/t-darwin" + case ${target} in + *-darwin1[0-9]*) tmake_file="${tmake_file} rs6000/t-darwin8" ;; + *-darwin[0-7]*) ;; + *-darwin[8-9]*) tmake_file="${tmake_file} rs6000/t-darwin8" ;; + esac extra_headers=altivec.h ;; powerpc*-*-freebsd*) |