From bb5bb2046fa0759d94995cbfb4f41137cd0b2a91 Mon Sep 17 00:00:00 2001 From: Pavel Chupin Date: Fri, 16 May 2014 13:49:24 +0400 Subject: [PATCH] Add R_X86_64_64 to the list of possible weak relocs Change-Id: I768a5948d89701a1719734954a3524d3c7187e6a Signed-off-by: Pavel Chupin --- linker/linker.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/linker/linker.cpp b/linker/linker.cpp index c5006e05d..38ae54628 100644 --- a/linker/linker.cpp +++ b/linker/linker.cpp @@ -889,6 +889,7 @@ static int soinfo_relocate(soinfo* si, ElfW(Rela)* rela, unsigned count, soinfo* case R_X86_64_JUMP_SLOT: case R_X86_64_GLOB_DAT: case R_X86_64_32: + case R_X86_64_64: case R_X86_64_RELATIVE: // No need to do anything. break;