aboutsummaryrefslogtreecommitdiff
path: root/libgcc
diff options
context:
space:
mode:
authorAndreas Krebbel <Andreas.Krebbel@de.ibm.com>2014-03-27 15:40:31 +0000
committerAndreas Krebbel <krebbel@gcc.gnu.org>2014-03-27 15:40:31 +0000
commit59976ef8787b47961b28f925f66e1adc3a04de6a (patch)
tree934218d5356a8433e38562648113fd938f95a1bb /libgcc
parent6e77facf95d5a2f42afc26d505a5771f5d2a7e7d (diff)
downloadgcc-59976ef8787b47961b28f925f66e1adc3a04de6a.zip
gcc-59976ef8787b47961b28f925f66e1adc3a04de6a.tar.gz
gcc-59976ef8787b47961b28f925f66e1adc3a04de6a.tar.bz2
config.host: Append t-floattodi to tmake_file depending on host_address.
2014-03-27 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> * config.host: Append t-floattodi to tmake_file depending on host_address. From-SVN: r208868
Diffstat (limited to 'libgcc')
-rw-r--r--libgcc/ChangeLog5
-rw-r--r--libgcc/config.host5
2 files changed, 9 insertions, 1 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 51db8a2..edac501 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 f8f74cc..f4a7428 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*)