9c4147aa9e
- Allow ldconfig cached objects previously marked as hard or soft ABI to now become unmarked without raising an error. This works around a binutils bug that caused objects to become unmarked. (#1009145)
20 lines
851 B
Diff
20 lines
851 B
Diff
--- glibc-2.18-151-g303e567.orig/elf/ldconfig.c 2013-09-25 14:01:01.522446341 -0400
|
|
+++ glibc-2.18-151-g303e567/elf/ldconfig.c 2013-09-25 14:06:31.094218857 -0400
|
|
@@ -959,6 +959,16 @@
|
|
|| dlib_ptr->flag == FLAG_ELF_LIBC6)
|
|
&& flag == FLAG_ELF)
|
|
dlib_ptr->flag = flag;
|
|
+#ifdef __arm__
|
|
+ /* In Fedora 20 binutils regressed temporarily and failed to
|
|
+ mark hard ABI objects with the correct flag. Therefore we
|
|
+ must accept unmarked objects that were previously marked
|
|
+ hard ABI. We can remove this check once the entire distribution
|
|
+ has been rebuilt. */
|
|
+ else if (dlib_ptr->flag & FLAG_ARM_LIBHF &&
|
|
+ (flag == FLAG_ELF_LIBC6))
|
|
+ ;
|
|
+#endif
|
|
else
|
|
error (0, 0, _("libraries %s and %s in directory %s have same soname but different type."),
|
|
dlib_ptr->name, direntry->d_name,
|