aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2016-10-06 19:23:05 -0700
committerTianjie Xu <xunchang@google.com>2016-10-06 19:45:02 -0700
commit3656958a16590d07d1e25587734e000beb437740 (patch)
treed3ae3fa8557af57878679ef81d69c9fa8bf64acb
parentbc1ce3b828a97d238f586670d2e8ace0d3f80aec (diff)
downloadbionic-3656958a16590d07d1e25587734e000beb437740.tar.gz
Fix a linking error in bionic/tests
Fix the following linking error by adding liblog in the makefile: "system/core/libziparchive/zip_archive.cc:277: error: undefined reference to '__android_log_error_write'" The error happens because libziparchive has dependency on liblog. This error affects the downstream branches of nyc-dev. Bug: 31251826 Test: mma -j32 Change-Id: Ia42909bbbd150ae0ca9f6aa6b14372f2e0aedccf
-rw-r--r--tests/Android.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Android.mk b/tests/Android.mk
index 956b76fcc..d39f4d7f5 100644
--- a/tests/Android.mk
+++ b/tests/Android.mk
@@ -319,6 +319,7 @@ common_bionic-unit-tests_shared_libraries_target := \
common_bionic-unit-tests_static_libraries_target := \
libbase \
libziparchive \
+ liblog \
libz \
libutils \