From 43a672393627a4b21ebca5e9bf64f93b6ada7c25 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 27 Dec 2016 09:34:40 +0100 Subject: ldso: do not resolve relocations for debug, dig them up when debugging Signed-off-by: Waldemar Brodkorb --- ldso/ldso/metag/dl-debug.h | 33 --------------------------------- ldso/ldso/metag/elfinterp.c | 6 ------ 2 files changed, 39 deletions(-) delete mode 100644 ldso/ldso/metag/dl-debug.h (limited to 'ldso/ldso/metag') diff --git a/ldso/ldso/metag/dl-debug.h b/ldso/ldso/metag/dl-debug.h deleted file mode 100644 index 46c257c5c..000000000 --- a/ldso/ldso/metag/dl-debug.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Meta ELF shared library loader support. - * - * Program to load an elf binary on a linux system, and run it. - * References to symbols in sharable libraries can be resolved - * by either an ELF sharable library or a linux style of shared - * library. - * - * Copyright (C) 2013, Imagination Technologies Ltd. - * - * Licensed under LGPL v2.1 or later, see the file COPYING.LIB in this tarball. - */ - -static const char *_dl_reltypes_tab[] = { - [0] "R_METAG_HIADDR16", "R_METAG_LOADDR16", "R_METAG_ADDR32", - [3] "R_METAG_NONE", "R_METAG_RELBRANCH", "R_METAG_GETSETOFF", - [6] "R_METAG_REG32OP1", "R_METAG_REG32OP2", "R_METAG_REG32OP3", - [9] "R_METAG_REG16OP1", "R_METAG_REG16OP2", "R_METAG_REG16OP3", - [12] "R_METAG_REG32OP4", "R_METAG_HIOG", "R_METAG_LOOG", - [30] "R_METAG_GNU_VTINHERIT", "R_METAG_GNU_VTENTRY", - [32] "R_METAG_HI16_GOTOFF", "R_METAG_LO16_GOTOFF", - [34] "R_METAG_GETSET_GOTOFF", "R_METAG_GETSET_GOT", - [36] "R_METAG_HI16_GOTPC", "R_METAG_LO16_GOTPC", - [38] "R_METAG_HI16_PLT", "R_METAG_LO16_PLT", - [40] "R_METAG_RELBRANCH_PLT", "R_METAG_GOTOFF", - [42] "R_METAG_PLT", "R_METAG_COPY", "R_METAG_JMP_SLOT", - [45] "R_METAG_RELATIVE", "R_METAG_GLOB_DAT", "R_METAG_TLS_GD", - [48] "R_METAG_TLS_LDM", "R_METAG_TLS_LDO_HI16", "R_METAG_TLS_LDO_LO16", - [51] "R_METAG_TLS_LDO", "R_METAG_TLS_IE", "R_METAG_TLS_IENONPIC", - [54] "R_METAG_TLS_IENONPIC_HI16", "R_METAG_TLS_IENONPIC_LO16", - [56] "R_METAG_TLS_TPOFF", "R_METAG_TLS_DTPMOD", "R_METAG_TLS_DTPOFF", - [59] "R_METAG_TLS_LE", "R_METAG_TLS_LE_HI16", "R_METAG_TLS_LE_LO16" -}; diff --git a/ldso/ldso/metag/elfinterp.c b/ldso/ldso/metag/elfinterp.c index e0f981741..ef02e8cf5 100644 --- a/ldso/ldso/metag/elfinterp.c +++ b/ldso/ldso/metag/elfinterp.c @@ -135,14 +135,8 @@ _dl_parse(struct elf_resolve *tpnt, struct r_scope_elem *scope, if (unlikely(res < 0)) { int reloc_type = ELF_R_TYPE(rpnt->r_info); - -#if defined (__SUPPORT_LD_DEBUG__) - _dl_dprintf(2, "can't handle reloc type %s\n", - _dl_reltypes(reloc_type)); -#else _dl_dprintf(2, "can't handle reloc type %x\n", reloc_type); -#endif _dl_exit(-res); } else if (unlikely(res > 0)) { _dl_dprintf(2, "can't resolve symbol\n"); -- cgit v1.2.3