diff options
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index e6c268c..766f599 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -3650,9 +3650,15 @@ powerpc*-*-* | rs6000-*-*) fi ;; esac - c_target_objs="rs6000-c.o" - cxx_target_objs="rs6000-c.o" - tmake_file="${tmake_file} rs6000/t-rs6000-c-rule" + case $machine in + *-*-darwin*) + ;; + *) + c_target_objs="rs6000-c.o" + cxx_target_objs="rs6000-c.o" + tmake_file="${tmake_file} rs6000/t-rs6000-c-rule" + ;; + esac ;; sparc*-*-*) case ".$with_cpu" in |