diff options
author | Geoffrey Keating <geoffk@apple.com> | 2005-02-06 08:34:34 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2005-02-06 08:34:34 +0000 |
commit | f1b4c8d80a9ec575625ea3b656e679c923718a8d (patch) | |
tree | 0147f8e5212c5ecf5e0a11b5e4d72c58e260fa97 /gcc/config.gcc | |
parent | 4dc2f71b907c1dd12f8d54f93fbf34278db1ec0f (diff) | |
download | gcc-f1b4c8d80a9ec575625ea3b656e679c923718a8d.zip gcc-f1b4c8d80a9ec575625ea3b656e679c923718a8d.tar.gz gcc-f1b4c8d80a9ec575625ea3b656e679c923718a8d.tar.bz2 |
config.gcc (*-*-darwin*): Separate darwin7 and darwin8 configs.
* config.gcc (*-*-darwin*): Separate darwin7 and darwin8 configs.
* config/darwin8.h: New.
* config/darwin7.h: Update comment.
From-SVN: r94669
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 65e6b02..51300e2 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" |