aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-10-30 11:15:09 -0700
committerIan Rogers <irogers@google.com>2014-10-30 11:15:09 -0700
commit49d4fae5bf057e48eb869261ae4006d3597a3ed3 (patch)
tree3d3654eaa91d411213d8869422bf628d194def7d
parent39ee1f4b336c7e6b25be0df6375c18dcbd577c09 (diff)
downloadvixl-49d4fae5bf057e48eb869261ae4006d3597a3ed3.tar.gz
Vixl on the host as a shared rather than static library.
Change-Id: I245fe9c1ba0230867c1bf244f4a5b508e5d8956f
-rw-r--r--Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index 018337bf..ba3d1419 100644
--- a/Android.mk
+++ b/Android.mk
@@ -109,13 +109,13 @@ LOCAL_CPP_EXTENSION := .cc
LOCAL_CPPFLAGS := -O2 -Wall -Wextra -DUSE_SIMULATOR -std=c++11
LOCAL_C_INCLUDES := $(vixl_include_files)
LOCAL_SRC_FILES := $(vixl_src_files)
-LOCAL_STATIC_LIBRARIES := liblog
+LOCAL_SHARED_LIBRARIES := liblog
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := libvixl
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
LOCAL_MULTILIB := both
include external/libcxx/libcxx.mk
-include $(BUILD_HOST_STATIC_LIBRARY)
+include $(BUILD_HOST_SHARED_LIBRARY)
# cctest_vixl: VIXL native tests (to run all tests execute ./cctest_vixl --run_all)
#