From d34bee8759a37112f701bc43bb890c273c16acb1 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Fri, 18 Jan 2013 13:36:06 -0500 Subject: [PATCH] android: pthread is bundled within the Android libc implementation. We do not need to specify it as an external lib. --- samples/wrapper/Makefile_android | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/wrapper/Makefile_android b/samples/wrapper/Makefile_android index f4ba0b5e39..2f8ec2435b 100644 --- a/samples/wrapper/Makefile_android +++ b/samples/wrapper/Makefile_android @@ -15,4 +15,4 @@ REGEXP_OBJS = \ regexp_report.o wrapper: wrapper.o $(BOINC_LIB_DIR)/libboinc.a $(BOINC_API_DIR)/libboinc_api.a $(REGEXP_OBJS) - $(CXX) $(CXXFLAGS) $(LDFLAGS) -o wrapper wrapper.o $(REGEXP_OBJS) $(STDCPPTC) -pthread -lboinc_api -lboinc -lboinc_zip + $(CXX) $(CXXFLAGS) $(LDFLAGS) -o wrapper wrapper.o $(REGEXP_OBJS) $(STDCPPTC) -lboinc_api -lboinc -lboinc_zip