re PR bootstrap/36702 (Bootstrap fails at revision 137369 on i686-apple-darwin9)

2008-07-02  H.J. Lu  <hongjiu.lu@intel.com>

	PR boostrap/36702
	* config.host: Only include 32bit t-fprules-softfp for Darwin/x86
	and Linux/x86.  Include 64bit t-softfp-compat for Linux/x86.

	* config/i386/64/t-fprules-softfp: Moved to ...
	* config/i386/64/t-softfp-compat: This.  New.

From-SVN: r137380
This commit is contained in:
H.J. Lu 2008-07-02 19:31:53 +00:00 committed by H.J. Lu
parent 5f464fa299
commit c174f11c1b
3 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2008-07-02 H.J. Lu <hongjiu.lu@intel.com>
PR boostrap/36702
* config.host: Only include 32bit t-fprules-softfp for Darwin/x86
and Linux/x86. Include 64bit t-softfp-compat for Linux/x86.
* config/i386/64/t-fprules-softfp: Moved to ...
* config/i386/64/t-softfp-compat: This. New.
2008-07-02 Uros Bizjak <ubizjak@gmail.com>
* config/i386/32/sfp-machine.h (FP_HANDLE_EXCEPTIONS) [FP_EX_INVALID]:

View File

@ -582,6 +582,17 @@ esac
case ${host} in
i[34567]86-*-darwin* | x86_64-*-darwin* | \
i[34567]86-*-linux* | x86_64-*-linux*)
tmake_file="${tmake_file} i386/${host_address}/t-fprules-softfp"
if test "${host_address}" = 32; then
tmake_file="${tmake_file} i386/${host_address}/t-fprules-softfp"
fi
;;
esac
case ${host} in
i[34567]86-*-linux* | x86_64-*-linux*)
# Provide backward binary compatibility for 64bit Linux/x86.
if test "${host_address}" = 64; then
tmake_file="${tmake_file} i386/${host_address}/t-softfp-compat"
fi
;;
esac