From 0f975a2099dd7612f0bf9fc28f5eb7b6b76c4f9c Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Tue, 22 May 2018 21:37:49 -0700 Subject: [PATCH] Work around b/24465209, do not use clang lld See longer explanation in b/80093890. Clang lld does not generate expected DT_REL and DT_RELA tags with --hash-style=both and --pack-dyn-relocs=android. I am not sure about the extent of b/24465209, so I would rather not to use lld for these .so files for now. Bug: 80093890 Bug: 24465209 Test: build with USE_CLANG_LLD=true and run dlext.compat_elf_hash_and_relocation_tables Change-Id: I645dbe25c5b9975605e3af5e717ed36c276f14d4 --- liblog/Android.bp | 1 + 1 file changed, 1 insertion(+) diff --git a/liblog/Android.bp b/liblog/Android.bp index 2d5a5dbb2..1bd796ae3 100644 --- a/liblog/Android.bp +++ b/liblog/Android.bp @@ -84,6 +84,7 @@ cc_library { android_arm: { // TODO: This is to work around b/24465209. Remove after root cause is fixed ldflags: ["-Wl,--hash-style=both"], + use_clang_lld: false, }, windows: { srcs: ["uio.c"],