yann@2667: ldso/mips: workaround for missing TLS macros in elfinterpret.c yann@2667: yann@2667: These macros declarations are missing, so gcc believes the code is calling yann@2667: a function, so any later linking will fail. yann@2667: yann@2667: Work this around by copying the mcaros from: yann@2667: libpthread/nptl/sysdeps/mips/dl-tls.h yann@2667: yann@2667: We can't include the header because of incompatible symbol declarations, yann@2667: so we just copy the macros for now. yann@2667: yann@2667: ----> THIS IS A DIRTY HACK! <---- yann@2667: yann@2667: Signed-off-by: "Yann E. MORIN" yann@2667: yann@2667: diff -durN uClibc-0.9.32.orig/ldso/ldso/mips/elfinterp.c uClibc-0.9.32/ldso/ldso/mips/elfinterp.c yann@2667: --- uClibc-0.9.32.orig/ldso/ldso/mips/elfinterp.c 2011-06-08 21:35:20.000000000 +0200 yann@2667: +++ uClibc-0.9.32/ldso/ldso/mips/elfinterp.c 2011-09-12 14:02:37.553628824 +0200 yann@2667: @@ -34,6 +34,21 @@ yann@2667: yann@2667: #define OFFSET_GP_GOT 0x7ff0 yann@2667: yann@2667: +/* The thread pointer points 0x7000 past the first static TLS block. */ yann@2667: +#define TLS_TP_OFFSET 0x7000 yann@2667: + yann@2667: +/* Dynamic thread vector pointers point 0x8000 past the start of each yann@2667: + * TLS block. */ yann@2667: +#define TLS_DTV_OFFSET 0x8000 yann@2667: + yann@2667: +/* Compute the value for a GOTTPREL reloc. */ yann@2667: +#define TLS_TPREL_VALUE(sym_map, sym_val) \ yann@2667: + ((sym_map)->l_tls_offset + sym_val - TLS_TP_OFFSET) yann@2667: + yann@2667: +/* Compute the value for a DTPREL reloc. */ yann@2667: +#define TLS_DTPREL_VALUE(sym_val) \ yann@2667: + (sym_val - TLS_DTV_OFFSET) yann@2667: + yann@2667: unsigned long __dl_runtime_resolve(unsigned long sym_index, yann@2667: unsigned long old_gpreg) yann@2667: {