From 39201d07e41ca4cf5f8c35d4663767aa3f75208f Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 19 Jun 2014 15:26:04 -0400 Subject: add tlsdesc support for x86_64 --- arch/x86_64/reloc.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch/x86_64') diff --git a/arch/x86_64/reloc.h b/arch/x86_64/reloc.h index ffab5566..9bc58496 100644 --- a/arch/x86_64/reloc.h +++ b/arch/x86_64/reloc.h @@ -25,6 +25,8 @@ static int remap_rel(int type) return REL_DTPOFF; case R_X86_64_TPOFF64: return REL_TPOFF; + case R_X86_64_TLSDESC: + return REL_TLSDESC; } return 0; } -- cgit v1.2.1