From 1c8eb8bad791fe9d01d0d4ab77882db634fa933d Mon Sep 17 00:00:00 2001 From: rofl0r Date: Fri, 9 Nov 2012 23:36:55 +0100 Subject: PPC port cleaned up, static linking works well now. --- arch/ppc/reloc.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 arch/ppc/reloc.h (limited to 'arch/ppc/reloc.h') diff --git a/arch/ppc/reloc.h b/arch/ppc/reloc.h deleted file mode 100644 index 10e89aa3..00000000 --- a/arch/ppc/reloc.h +++ /dev/null @@ -1,26 +0,0 @@ -#include -#include - -#define ETC_LDSO_PATH "/etc/ld-musl-arm.path" - -#define IS_COPY(x) ((x)==R_ARM_COPY) -#define IS_PLT(x) ((x)==R_ARM_JUMP_SLOT) - -static inline void do_single_reloc(size_t *reloc_addr, int type, size_t sym_val, size_t sym_size, unsigned char *base_addr, size_t addend) -{ - switch(type) { - case R_ARM_ABS32: - *reloc_addr += sym_val; - break; - case R_ARM_GLOB_DAT: - case R_ARM_JUMP_SLOT: - *reloc_addr = sym_val; - break; - case R_ARM_RELATIVE: - *reloc_addr += (size_t)base_addr; - break; - case R_ARM_COPY: - memcpy(reloc_addr, (void *)sym_val, sym_size); - break; - } -} -- cgit v1.2.1