Files
clang-p2996/lldb/test/api/multithreaded/Makefile
Shawn Best 954eae0ed4 add Makefile rule for test program CREATE_STD_THREADS
Effectively removes -lpthreads from linux/gcc build of test programs in test/api/multithreaded. This was done due to that combination causing a test program to hang due, likely due to an issue with gcc linker and libstdc++ conflicting pthreads code in test program and pthread used by lldb.  Issue has been documented at:
http://llvm.org/bugs/show_bug.cgi?id=21553

Differential Revision: http://reviews.llvm.org/D5838

llvm-svn: 222031
2014-11-14 19:41:33 +00:00

10 lines
135 B
Makefile

LEVEL = ../../make
ENABLE_STD_THREADS := YES
CXX_SOURCES := main.cpp
include $(LEVEL)/Makefile.rules
clean::
rm -rf *.o *.d *.dSYM