diff options
author | Eric Christopher <echristo@apple.com> | 2007-06-06 22:43:49 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2007-06-06 22:43:49 +0000 |
commit | 7a1eca8375bfb7f59496f7ddcd34aa5d6133fc45 (patch) | |
tree | b12ba80aa1c36669c7dea9298c20c53ea53acc00 /gcc/config.gcc | |
parent | 60fce41336693ee3cfb0d722fb05d4dc7039516c (diff) | |
download | gcc-7a1eca8375bfb7f59496f7ddcd34aa5d6133fc45.zip gcc-7a1eca8375bfb7f59496f7ddcd34aa5d6133fc45.tar.gz gcc-7a1eca8375bfb7f59496f7ddcd34aa5d6133fc45.tar.bz2 |
config.gcc (i?86-*-darwin*): Remove arch parameter.
2007-06-06 Eric Christopher <echristo@apple.com>
* config.gcc (i?86-*-darwin*): Remove arch parameter.
(x86_64-*-darwin*): Ditto.
* config/i386/darwin.h (TARGET_SUBTARGET32_ISA_DEFAULT): Define.
(TARGET_SUBTARGET64_ISA_DEFAULT): Ditto.
From-SVN: r125508
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index c4a47f9..3b5882e 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1052,12 +1052,10 @@ i[34567]86-*-darwin*) # config.guess deciding that the configuration is i386-*-darwin* and # then this file using that to set --with-cpu=i386 which has no -m64 # support. - with_arch=${with_arch:-nocona} with_cpu=${with_cpu:-generic} tmake_file="${tmake_file} i386/t-fprules-softfp64 soft-fp/t-softfp" ;; x86_64-*-darwin*) - with_arch=${with_arch:-nocona} with_cpu=${with_cpu:-generic} tmake_file="t-darwin ${cpu_type}/t-darwin64 t-slibgcc-darwin i386/t-fprules-softfp64 soft-fp/t-softfp" tm_file="${tm_file} ${cpu_type}/darwin64.h" |