diff options
author | krebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-03-27 15:40:31 +0000 |
---|---|---|
committer | krebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-03-27 15:40:31 +0000 |
commit | 368b5b2c9069ac91d089775d4fb2fd1293a624bc (patch) | |
tree | 934218d5356a8433e38562648113fd938f95a1bb /libgcc | |
parent | 06fa0630c6e413c73fedd7fb069256f5d95272d0 (diff) | |
download | gcc-368b5b2c9069ac91d089775d4fb2fd1293a624bc.tar.gz |
2014-03-27 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config.host: Append t-floattodi to tmake_file depending on
host_address.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@208868 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/config.host | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 51db8a2809c..edac501b01c 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2014-03-27 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> + + * config.host: Append t-floattodi to tmake_file depending on + host_address. + 2014-03-20 Joel Sherrill <joel.sherrill@oarcorp.com> * config.host (v850*-*-*): Add to tmake_file instead of resetting it. diff --git a/libgcc/config.host b/libgcc/config.host index f8f74cc40b2..f4a74287293 100644 --- a/libgcc/config.host +++ b/libgcc/config.host @@ -1027,7 +1027,10 @@ s390-*-linux*) md_unwind_header=s390/linux-unwind.h ;; s390x-*-linux*) - tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux s390/32/t-floattodi" + tmake_file="${tmake_file} s390/t-crtstuff s390/t-linux" + if test "${host_address}" = 32; then + tmake_file="${tmake_file} s390/32/t-floattodi" + fi md_unwind_header=s390/linux-unwind.h ;; s390x-ibm-tpf*) |