diff options
author | Mike Stump <mrs@apple.com> | 2006-11-17 06:48:01 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2006-11-17 06:48:01 +0000 |
commit | 80c85ca2871defbcb6e6c03e27b15d7b6432c535 (patch) | |
tree | d90cad857cdc7befcd4cafdeb04e5648285d0b52 /gcc/config.gcc | |
parent | 36b15ad0dc8c471bbe053131e48ab3ec49aa7009 (diff) | |
download | gcc-80c85ca2871defbcb6e6c03e27b15d7b6432c535.zip gcc-80c85ca2871defbcb6e6c03e27b15d7b6432c535.tar.gz gcc-80c85ca2871defbcb6e6c03e27b15d7b6432c535.tar.bz2 |
darwin.h (LINK_COMMAND_SPEC): Don't do dwarf stuff on pre-darwin9 system, unless the user asks for it directly.
* config/darwin.h (LINK_COMMAND_SPEC): Don't do dwarf stuff on
pre-darwin9 system, unless the user asks for it directly.
(PREFERRED_DEBUGGING_TYPE): Likewise.
* config/i386/darwin.h (PREFERRED_DEBUGGING_TYPE): Likewise.
* config.gcc: Add suppport for darwin9.h.
* config/darwin9.h: Add.
* doc/install.texi (Specific): Clarify darwin documentation.
From-SVN: r118917
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 6fd1a31..bdf280c 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -366,7 +366,13 @@ esac # Common parts for widely ported systems. case ${target} in *-*-darwin*) - tm_file="${tm_file} darwin.h ${cpu_type}/darwin.h" + tm_file="${tm_file} darwin.h" + case ${target} in + *-*-darwin9*) + tm_file="${tm_file} darwin9.h" + ;; + esac + tm_file="${tm_file} ${cpu_type}/darwin.h" tm_p_file="${tm_p_file} darwin-protos.h" tmake_file="t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin" target_gtfiles="\$(srcdir)/config/darwin.c" |