diff options
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/Android.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/Android.mk b/compiler/Android.mk index b17cd52fad..6d656e63f1 100644 --- a/compiler/Android.mk +++ b/compiler/Android.mk @@ -158,11 +158,10 @@ define build-libart-compiler art_ndebug_or_debug := $(2) include $(CLEAR_VARS) - ifeq ($$(art_target_or_host),target) - include external/stlport/libstlport.mk - else + ifeq ($$(art_target_or_host),host) LOCAL_IS_HOST_MODULE := true endif + include art/build/Android.libcxx.mk LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION) ifeq ($$(art_ndebug_or_debug),ndebug) LOCAL_MODULE := libart-compiler |