diff options
author | Eric Christopher <echristo@gcc.gnu.org> | 2007-05-26 01:58:51 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2007-05-26 01:58:51 +0000 |
commit | 8536ebb582cb5f4a7d78342ac9e8bd0f7f065503 (patch) | |
tree | 462b9a3aa0607bc89e104a65edaa0f8e40184f77 /gcc/config.gcc | |
parent | 9a3e1f0aaacb49b394a204ca7ad0cc4cf62a7084 (diff) | |
download | gcc-8536ebb582cb5f4a7d78342ac9e8bd0f7f065503.zip gcc-8536ebb582cb5f4a7d78342ac9e8bd0f7f065503.tar.gz gcc-8536ebb582cb5f4a7d78342ac9e8bd0f7f065503.tar.bz2 |
config.gcc: Add i386/t-fprules-softfp64 and soft-fp/t-softfp to x86-darwin configurations.
2007-05-25 Eric Christopher <echristo@apple.com>
* config.gcc: Add i386/t-fprules-softfp64 and soft-fp/t-softfp
to x86-darwin configurations.
* config/i386/t-darwin: Add softfp support.
* config/i386/t-darwin64: Ditto.
* config/i386/sfp-machine.h: If mach then don't use
aliasing, emit a stub to call.
From-SVN: r125085
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index fb346a0..977aafe 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1052,11 +1052,12 @@ i[34567]86-*-darwin*) # 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" + 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" ;; i[34567]86-*-elf*) |