summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Collingbourne <pcc@google.com>2020-01-10 12:55:33 -0800
committerPeter Collingbourne <pcc@google.com>2020-01-10 13:32:20 -0800
commit956ccc27333b25c7c29f10afb6e880ac06a2c758 (patch)
treebd93ac161d0a892238e2ade4c40d18c8401ceff6
parent249d6896be0c5179c6d6b4fd1e3d8f092a01582d (diff)
downloadlibunwind_llvm-956ccc27333b25c7c29f10afb6e880ac06a2c758.tar.gz
Don't implicitly depend on bionic from libunwind_llvm.
This isn't technically correct (libunwind_llvm depends on libc) but is necessary to prevent soong from complaining about circular dependencies when we start linking libunwind_llvm into libc. Bug: 144430859 Change-Id: I221fd31626b9389c83553c79ab014bced516ff19
-rw-r--r--Android.bp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 6eb34a0..1ab866a 100644
--- a/Android.bp
+++ b/Android.bp
@@ -61,6 +61,8 @@ cc_library_static {
cflags: LIBUNWIND_CFLAGS,
cppflags: LIBUNWIND_CPPFLAGS,
stl: "none",
+ system_shared_libs: [],
+ header_libs: ["libc_headers"],
sanitize: {
never: true,
},