summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Uhler2015-03-24 16:46:01 -0500
committerRichard Uhler2015-03-24 16:46:01 -0500
commitacb31ba90509ab1c88a6919ca04aaada5c281236 (patch)
treed33e48dd66d230dd48337821fd92390f00255482
parent8386a726d11785dee69a806a0d37147f7bad1e76 (diff)
downloadplatform-system-core-acb31ba90509ab1c88a6919ca04aaada5c281236.tar.gz
platform-system-core-acb31ba90509ab1c88a6919ca04aaada5c281236.tar.xz
platform-system-core-acb31ba90509ab1c88a6919ca04aaada5c281236.zip
Add make target for shared libcutils on host.
Needed by host dex2oat. Change-Id: Ia5b53136de3d531c820f03c3f251e58418204be1
-rw-r--r--libcutils/Android.mk12
1 files changed, 11 insertions, 1 deletions
diff --git a/libcutils/Android.mk b/libcutils/Android.mk
index 2c5e351a2..d8903192a 100644
--- a/libcutils/Android.mk
+++ b/libcutils/Android.mk
@@ -64,7 +64,7 @@ ifneq ($(WINDOWS_HOST_ONLY),1)
64endif 64endif
65 65
66 66
67# Static library for host 67# Shared and static library for host
68# ======================================================== 68# ========================================================
69LOCAL_MODULE := libcutils 69LOCAL_MODULE := libcutils
70LOCAL_SRC_FILES := $(commonSources) $(commonHostSources) dlmalloc_stubs.c 70LOCAL_SRC_FILES := $(commonSources) $(commonHostSources) dlmalloc_stubs.c
@@ -76,6 +76,16 @@ LOCAL_MULTILIB := both
76LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk 76LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
77include $(BUILD_HOST_STATIC_LIBRARY) 77include $(BUILD_HOST_STATIC_LIBRARY)
78 78
79include $(CLEAR_VARS)
80LOCAL_MODULE := libcutils
81LOCAL_SRC_FILES := $(commonSources) $(commonHostSources) dlmalloc_stubs.c
82LOCAL_SHARED_LIBRARIES := liblog
83ifneq ($(HOST_OS),windows)
84LOCAL_CFLAGS += -Werror
85endif
86LOCAL_MULTILIB := both
87LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
88include $(BUILD_HOST_SHARED_LIBRARY)
79 89
80# Tests for host 90# Tests for host
81# ======================================================== 91# ========================================================