aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg-Johann Lay <avr@gjlay.de>2019-12-05 09:47:35 +0000
committerGeorg-Johann Lay <avr@gjlay.de>2019-12-05 09:47:35 +0000
commitb48fdae8b06b63d723413498dce9fe3eb675a0a4 (patch)
tree5bf260d3f1bc350595d3b5f349bb2c60e47b1544
parent40c72a264df777f3d80928f58e06ca1bc30ff285 (diff)
PR target/92055
* config/avr/t-avrlibc (MULTISUBDIR): Search for double, not double64. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@278992 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--libgcc/ChangeLog5
-rw-r--r--libgcc/config/avr/t-avrlibc4
2 files changed, 7 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index bf5c131d7f8..78aefe8b437 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,8 @@
+2019-12-05 Georg-Johann Lay <avr@gjlay.de>
+
+ PR target/92055
+ * config/avr/t-avrlibc (MULTISUBDIR): Search for double, not double64.
+
2019-11-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
PR libgcc/91737
diff --git a/libgcc/config/avr/t-avrlibc b/libgcc/config/avr/t-avrlibc
index 2424d663565..34eca4f64ee 100644
--- a/libgcc/config/avr/t-avrlibc
+++ b/libgcc/config/avr/t-avrlibc
@@ -71,9 +71,9 @@ ifneq (,$(findstring avr,$(MULTISUBDIR)))
# In default dir, copying won'twork because the default multilib is
# built after all the others.
-ifneq (,$(findstring double64,$(MULTISUBDIR)))
+ifneq (,$(findstring double,$(MULTISUBDIR)))
-# We are in double64/libgcc or long-double64/libgcc:
+# We are in double{32|64}/libgcc or long-double{32|64}/libgcc:
# Just copy from the [long ]double=float multilib; we would remove any DFmode
# bits from this multilib variant, anyway, because the current assumption
# is that avr-libc hosts *all* the IEEE-double stuff.