From 5cab04ffd2c29e2a03ab0706d5542b9b18c289ff Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Thu, 6 Nov 2014 17:32:25 -0800 Subject: [PATCH] Missed a dependency on pthreads. Change-Id: I060c9c65b07efe89a308fccf71a1096424a7de39 --- core/cxx_stl_setup.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cxx_stl_setup.mk b/core/cxx_stl_setup.mk index c688088baf..4f41daa862 100644 --- a/core/cxx_stl_setup.mk +++ b/core/cxx_stl_setup.mk @@ -35,7 +35,7 @@ ifneq ($(filter $(my_cxx_stl),libc++ libc++_static),) ifdef LOCAL_IS_HOST_MODULE my_cppflags += -nostdinc++ my_ldflags += -nodefaultlibs - my_ldlibs += -lc -lm + my_ldlibs += -lc -lm -lpthread endif else ifneq ($(filter $(my_cxx_stl),stlport stlport_static),) ifndef LOCAL_IS_HOST_MODULE