Merge "Remove support for pre-r13 NDKs." am: 9d3270bd52

am: 28cc8a9c83

Change-Id: I2695424c9de939c26432480d17cf01116b996af1
This commit is contained in:
Dan Albert 2017-12-16 01:25:07 +00:00 committed by android-build-merger
commit 9b661597f6
1 changed files with 13 additions and 38 deletions

View File

@ -207,39 +207,15 @@ ifneq ($(LOCAL_SDK_VERSION),)
endif endif
else # LOCAL_NDK_STL_VARIANT is not stlport_* either else # LOCAL_NDK_STL_VARIANT is not stlport_* either
ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT))) ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
# Pre-r11 NDKs used libgabi++ for libc++'s C++ ABI, but r11 and later use
# libc++abi.
#
# r13 no longer has the inner directory as a side effect of just using
# external/libcxx.
ifeq (r10,$(LOCAL_NDK_VERSION))
my_ndk_stl_include_path := \
$(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include
my_ndk_stl_include_path += \
$(my_ndk_source_root)/cxx-stl/llvm-libc++/gabi++/include
else ifeq (r11,$(LOCAL_NDK_VERSION))
my_ndk_stl_include_path := \
$(my_ndk_source_root)/cxx-stl/llvm-libc++/libcxx/include
my_ndk_stl_include_path += \
$(my_ndk_source_root)/cxx-stl/llvm-libc++abi/libcxxabi/include
else
my_ndk_stl_include_path := \ my_ndk_stl_include_path := \
$(my_ndk_source_root)/cxx-stl/llvm-libc++/include $(my_ndk_source_root)/cxx-stl/llvm-libc++/include
my_ndk_stl_include_path += \ my_ndk_stl_include_path += \
$(my_ndk_source_root)/cxx-stl/llvm-libc++abi/include $(my_ndk_source_root)/cxx-stl/llvm-libc++abi/include
endif
my_ndk_stl_include_path += $(my_ndk_source_root)/android/support/include my_ndk_stl_include_path += $(my_ndk_source_root)/android/support/include
my_libcxx_libdir := \ my_libcxx_libdir := \
$(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant) $(my_ndk_source_root)/cxx-stl/llvm-libc++/libs/$(my_cpu_variant)
ifneq (,$(filter r10 r11,$(LOCAL_NDK_VERSION)))
ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
my_ndk_stl_static_lib := $(my_libcxx_libdir)/libc++_static.a
else
my_ndk_stl_shared_lib_fullpath := $(my_libcxx_libdir)/libc++_shared.so
endif
else
ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT)) ifeq (c++_static,$(LOCAL_NDK_STL_VARIANT))
my_ndk_stl_static_lib := \ my_ndk_stl_static_lib := \
$(my_libcxx_libdir)/libc++_static.a \ $(my_libcxx_libdir)/libc++_static.a \
@ -252,7 +228,6 @@ ifneq ($(LOCAL_SDK_VERSION),)
ifneq (,$(filter armeabi armeabi-v7a,$(my_cpu_variant))) ifneq (,$(filter armeabi armeabi-v7a,$(my_cpu_variant)))
my_ndk_stl_static_lib += $(my_libcxx_libdir)/libunwind.a my_ndk_stl_static_lib += $(my_libcxx_libdir)/libunwind.a
endif endif
endif
my_ldlibs += -ldl my_ldlibs += -ldl