diff options
author | billingd <billingd@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-29 07:49:26 +0000 |
---|---|---|
committer | billingd <billingd@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-29 07:49:26 +0000 |
commit | 6471e33bce5eb81ad6c18de6fc8048f16fd77e56 (patch) | |
tree | b3f975d3d94771d2a5571fa1d397d6add803a456 | |
parent | fd36071f55a6a2b2fec2cc22784c3a7347bd60f8 (diff) | |
download | gcc-6471e33bce5eb81ad6c18de6fc8048f16fd77e56.tar.gz |
2009-05-29 David Billinghurst <billingd@gcc.gnu.org>
* config.host: Add i386/${host_address}/t-fprules-softfp and
t-softfp to tmake_file for i[34567]86-*-cygwin*.
2009-05-29 David Billinghurst <billingd@gcc.gnu.org>
* config.gcc: Add i386/t-fprules-softfp and soft-fp/t-softfp
to tmake_file for i[34567]86-*-cygwin*.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147972 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config.gcc | 6 | ||||
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/config.host | 3 |
4 files changed, 16 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f368de2bb5f..81d884b242d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-05-29 David Billinghurst <billingd@gcc.gnu.org> + + * config.gcc: Add i386/t-fprules-softfp and soft-fp/t-softfp + to tmake_file for i[34567]86-*-cygwin*. + 2009-05-29 Jakub Jelinek <jakub@redhat.com> PR target/40017 diff --git a/gcc/config.gcc b/gcc/config.gcc index 3763bd9ed32..608b9c5f76e 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1315,8 +1315,7 @@ i[34567]86-*-mingw* | x86_64-*-mingw*) default_use_cxa_atexit=yes use_gcc_stdint=wrap case ${enable_threads} in - "" | yes | win32) - thread_file='win32' + "" | yes | win32) thread_file='win32' tmake_file="${tmake_file} i386/t-gthr-win32" ;; esac @@ -3127,6 +3126,9 @@ case ${target} in i[34567]86-*-linux* | x86_64-*-linux* | i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu) tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp i386/t-linux" ;; + i[34567]86-*-cygwin*) + tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp" + ;; ia64*-*-linux*) tmake_file="${tmake_file} ia64/t-fprules-softfp soft-fp/t-softfp" ;; diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index e76b383939e..38eac131b7f 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2009-05-29 David Billinghurst <billingd@gcc.gnu.org> + + * config.host: Add i386/${host_address}/t-fprules-softfp and + t-softfp to tmake_file for i[34567]86-*-cygwin*. + 2009-04-17 Aurelien Jarno <aurelien@aurel32.net> * config.host: Add i386/${host_address}/t-fprules-softfp to diff --git a/libgcc/config.host b/libgcc/config.host index 4a1cfb2a295..e5e384d23ca 100644 --- a/libgcc/config.host +++ b/libgcc/config.host @@ -562,7 +562,8 @@ esac case ${host} in i[34567]86-*-darwin* | x86_64-*-darwin* | \ i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu | \ - i[34567]86-*-linux* | x86_64-*-linux*) + i[34567]86-*-linux* | x86_64-*-linux* | \ + i[34567]86-*-cygwin*) if test "${host_address}" = 32; then tmake_file="${tmake_file} t-softfp i386/${host_address}/t-fprules-softfp" fi |