From ee7902d3b239aae0507e055369768caa2eef6bcb Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Thu, 2 Oct 2014 19:15:00 +0000 Subject: [PATCH] Add ENABLE_THREADS for these threaded tests On at least FreeBSD linking with -lpthread is needed for std::thread. llvm-svn: 218899 --- lldb/test/api/multiple-debuggers/Makefile | 1 + lldb/test/api/multithreaded/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/lldb/test/api/multiple-debuggers/Makefile b/lldb/test/api/multiple-debuggers/Makefile index a64bab717f7b..08f8850e3e8f 100644 --- a/lldb/test/api/multiple-debuggers/Makefile +++ b/lldb/test/api/multiple-debuggers/Makefile @@ -2,6 +2,7 @@ LEVEL = ../../make MAKE_DSYM := NO +ENABLE_THREADS := YES CXX_SOURCES := multi-process-driver.cpp testprog.cpp include $(LEVEL)/Makefile.rules diff --git a/lldb/test/api/multithreaded/Makefile b/lldb/test/api/multithreaded/Makefile index 6a87edf485bc..09374d3669ad 100644 --- a/lldb/test/api/multithreaded/Makefile +++ b/lldb/test/api/multithreaded/Makefile @@ -1,5 +1,6 @@ LEVEL = ../../make +ENABLE_THREADS := YES CXX_SOURCES := main.cpp include $(LEVEL)/Makefile.rules