diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2014-08-29 09:29:10 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2014-08-29 09:29:10 +0000 |
| commit | 14c35647592f7958138f930c4e3d0551bdad7d8b (patch) | |
| tree | 238a29587db0248137a896568b184c9b00397ce0 /libexec/rtld-elf/mips | |
| parent | c6fef2d49a087fe8df38b595248399fb287df372 (diff) | |
Notes
Diffstat (limited to 'libexec/rtld-elf/mips')
| -rw-r--r-- | libexec/rtld-elf/mips/reloc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libexec/rtld-elf/mips/reloc.c b/libexec/rtld-elf/mips/reloc.c index 24e56cec9eb2..4e750d7d955e 100644 --- a/libexec/rtld-elf/mips/reloc.c +++ b/libexec/rtld-elf/mips/reloc.c @@ -275,6 +275,10 @@ reloc_non_plt(Obj_Entry *obj, Obj_Entry *obj_rtld, int flags, if (obj == obj_rtld) return (0); + if ((flags & SYMLOOK_IFUNC) != 0) + /* XXX not implemented */ + return (0); + #ifdef SUPPORT_OLD_BROKEN_LD broken = 0; sym = obj->symtab; |
