mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-09 09:56:06 +00:00

Both of these markers are used in the test suit for annotating when a test needs multi threaded support. Previously they had slightly different meening but they converged to the point where they are used interchangably. This CL removes the ENABLE_STD_THREADS one to simplify the test suite and avoid some confusion. Differential revision: http://reviews.llvm.org/D15498 llvm-svn: 255641
10 lines
143 B
Makefile
10 lines
143 B
Makefile
LEVEL = ../../make
|
|
|
|
ENABLE_THREADS := YES
|
|
CXX_SOURCES := main.cpp
|
|
|
|
include $(LEVEL)/Makefile.rules
|
|
|
|
clean::
|
|
rm -rf $(wildcard *.o *.d *.dSYM)
|