* Upload package despite armv7 contamination check fail in
libopenblas64_.so I think it's probablly a false positive.
+ [changes introduced in 1.5.3+dfsg-1+rpi1 by Peter Michael Green]
+ * Apply upstream fix for build with llvm 10 on arm.
+
-- Peter Michael Green <plugwash@raspbian.org> Tue, 10 Nov 2020 08:00:02 +0000
julia (1.5.3+dfsg-1) unstable; urgency=medium
--- /dev/null
+commit 971e769479a2947a55cc253dc9750fd2a361367a
+Author: Yichao Yu <yyc1992@gmail.com>
+Date: Fri Jul 17 00:26:39 2020 -0400
+
+ Fix C++ code compilation on ARM with LLVM10 (#36674)
+
+diff --git a/src/debuginfo.cpp b/src/debuginfo.cpp
+index a03b7447fa..46edf285d3 100644
+--- a/src/debuginfo.cpp
++++ b/src/debuginfo.cpp
+@@ -243,14 +243,17 @@ public:
+ auto sName = section.getName();
+ if (!sName)
+ continue;
++ if (sName.get() != ".ARM.exidx") {
++ continue;
++ }
+ #else
+ StringRef sName;
+ if (section.getName(sName))
+ continue;
+-#endif
+ if (sName != ".ARM.exidx") {
+ continue;
+ }
++#endif
+ }
+ uint64_t loadaddr = L.getSectionLoadAddress(section);
+ size_t seclen = section.getSize();
auto sName = section.getName();
if (!sName)
continue;
+ if (sName.get() != ".ARM.exidx") {
+ continue;
+ }
#else
StringRef sName;
if (section.getName(sName))
continue;
-#endif
if (sName != ".ARM.exidx") {
continue;
}
+#endif
}
uint64_t loadaddr = L.getSectionLoadAddress(section);
size_t seclen = section.getSize();