From 2a4a023a541d16b2a8c66aed97748d0f0f376387 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 12 May 2015 11:00:31 -0700 Subject: [PATCH] Fix using libc++_static in dynamic binaries. Change-Id: I89bacfbf270d2d1bc1b9b2fa6951b355a67b808c --- core/cxx_stl_setup.mk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/core/cxx_stl_setup.mk b/core/cxx_stl_setup.mk index 630fe4eec..c59cd34ad 100644 --- a/core/cxx_stl_setup.mk +++ b/core/cxx_stl_setup.mk @@ -50,8 +50,14 @@ ifneq ($(filter $(my_cxx_stl),libc++ libc++_static),) my_cflags += -D_USING_LIBCXX my_c_includes += external/libcxx/include + # Note that the structure of this means that LOCAL_CXX_STL := libc++ will + # use the static libc++ for static executables. ifeq ($(my_link_type),dynamic) - my_shared_libraries += libc++ + ifeq ($(my_cxx_stl),libc++) + my_shared_libraries += libc++ + else + my_static_libraries += libc++_static + endif else my_static_libraries += libc++_static endif