diff options
Diffstat (limited to 'libgcc/config.host')
-rw-r--r-- | libgcc/config.host | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libgcc/config.host b/libgcc/config.host index 902a582..0b83fc0 100644 --- a/libgcc/config.host +++ b/libgcc/config.host @@ -142,7 +142,12 @@ microblaze*-*-*) mips*-*-*) # All MIPS targets provide a full set of FP routines. cpu_type=mips - tmake_file="mips/t-mips t-softfp-sfdf" + tmake_file="mips/t-mips" + if test "${libgcc_cv_mips_hard_float}" = yes; then + tmake_file="${tmake_file} t-hardfp-sfdf t-hardfp" + else + tmake_file="${tmake_file} t-softfp-sfdf" + fi if test "${ac_cv_sizeof_long_double}" = 16; then tmake_file="${tmake_file} mips/t-softfp-tf" fi |