diff options
author | Jack Howarth <howarth@bromo.med.uc.edu> | 2009-09-22 02:28:19 +0000 |
---|---|---|
committer | Peter O'Gorman <pogma@gcc.gnu.org> | 2009-09-22 02:28:19 +0000 |
commit | c9c80434b62f701de3502d8b25cd9462f3374a56 (patch) | |
tree | 85c72de7dc49198ecd76e219663e41cf3d9e8cad /gcc/config.gcc | |
parent | e0fd74691d8281cf68bfeedcf528d4a773b5ce04 (diff) | |
download | gcc-c9c80434b62f701de3502d8b25cd9462f3374a56.zip gcc-c9c80434b62f701de3502d8b25cd9462f3374a56.tar.gz gcc-c9c80434b62f701de3502d8b25cd9462f3374a56.tar.bz2 |
re PR middle-end/41260 (major regressions on *-apple-darwin10 at -m64 caused by r147995)
PR middle-end/41260
* gcc/config.gcc: Use darwin9.h and darwin10.h on darwin10 and later.
* gcc/config/darwin10.h: Add file to pass -no_compact_unwind on
LIB_SPEC for darwin10 and later since it always uses the unwinder in
libSystem which is derived from the gcc 4.2.1 unwinder.
From-SVN: r151960
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 0002563..2e28ea2 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -400,9 +400,12 @@ case ${target} in *-*-darwin*) tm_file="${tm_file} darwin.h" case ${target} in - *-*-darwin[912]*) + *-*-darwin9*) tm_file="${tm_file} darwin9.h" ;; + *-*-darwin[12][0-9]*) + tm_file="${tm_file} darwin9.h darwin10.h" + ;; esac tm_file="${tm_file} ${cpu_type}/darwin.h" tm_p_file="${tm_p_file} darwin-protos.h" |