aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2014-02-11 22:33:07 +0000
committerJoseph Myers <joseph@codesourcery.com>2014-02-11 22:33:07 +0000
commitcb4a292812c8b5547d142d894f2305259e67fa61 (patch)
treed999cde2ce986bf7af5daae7056a825184e6867c /ChangeLog
parent7e6424e343b5213ae12bae83c0d018f4fcafd5cd (diff)
downloadglibc-cb4a292812c8b5547d142d894f2305259e67fa61.zip
glibc-cb4a292812c8b5547d142d894f2305259e67fa61.tar.gz
glibc-cb4a292812c8b5547d142d894f2305259e67fa61.tar.bz2
Merge MIPS dl-lookup.c into generic file.
MIPS has its own version of dl-lookup.c to deal with differences between undefined symbol semantics in the PIC and non-PIC ABIs. This is often liable to get out of date with respect to the generic file (for example, the recent __builtin_expect changes didn't cover ports, and it's not obvious to anyone changing dl-lookup.c that there would be architecture-specific versions). This patch adds a macro that dl-machine.h can define that is used in the appropriate place in dl-lookup.c, so that MIPS no longer needs its own version of that file. Tested for mips64 that the only changes to disassembly of installed shared libraries appear to be ld.so changes attributable to different line numbers and paths in assertions. * elf/dl-lookup.c (ELF_MACHINE_SYM_NO_MATCH): Define if not already defined. (do_lookup_x): Use ELF_MACHINE_SYM_NO_MATCH. * sysdeps/mips/dl-lookup.c: Remove. * sysdeps/mips/dl-machine.h (ELF_MACHINE_SYM_NO_MATCH): New macro.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5e820f7..31c4908 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2014-02-11 Joseph Myers <joseph@codesourcery.com>
+
+ * elf/dl-lookup.c (ELF_MACHINE_SYM_NO_MATCH): Define if not
+ already defined.
+ (do_lookup_x): Use ELF_MACHINE_SYM_NO_MATCH.
+ * sysdeps/mips/dl-lookup.c: Remove.
+ * sysdeps/mips/dl-machine.h (ELF_MACHINE_SYM_NO_MATCH): New macro.
+
2014-02-11 Stefan Liebler <stli@linux.vnet.ibm.com>
[BZ #16447]