diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-06 08:34:34 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-06 08:34:34 +0000 |
commit | 83e14939b310e57c78920288ac24b58e9091e5d5 (patch) | |
tree | 0147f8e5212c5ecf5e0a11b5e4d72c58e260fa97 /gcc/config.gcc | |
parent | 30dab0fae3aeffb93c2a49a77003d6f89ce5ec95 (diff) | |
download | gcc-83e14939b310e57c78920288ac24b58e9091e5d5.tar.gz |
* config.gcc (*-*-darwin*): Separate darwin7 and darwin8 configs.
* config/darwin8.h: New.
* config/darwin7.h: Update comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94669 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 65e6b02a0ba..51300e25e5b 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -336,8 +336,10 @@ esac case ${target} in *-*-darwin*) case ${target} in + *-darwin1[0-9]*) tm_file="${tm_file} darwin8.h" ;; *-darwin[0-6]*) ;; - *) tm_file="${tm_file} darwin7.h" ;; + *-darwin7*) tm_file="${tm_file} darwin7.h" ;; + *) tm_file="${tm_file} darwin8.h" ;; esac tm_file="${tm_file} darwin.h" tm_p_file="${tm_p_file} darwin-protos.h" |