summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-30 02:27:34 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-30 02:27:34 +0100
commit37d6ab14503fba883ed81678ef05e0bc71eb51d8 (patch)
tree1541258f03afd412ebc612020520c64cba99af8f /test
parent264f959bb6a6acdec577f20d23bf9b533268195b (diff)
disable nptl/tls for linuxthreads targets
Diffstat (limited to 'test')
-rw-r--r--test/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
index 00dc705..ddebf37 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -12,6 +12,13 @@ DIRS := $(ALL_SUBDIRS)
ifeq ($(NO_THREADS),1)
DIRS := $(filter-out nptl,$(DIRS))
DIRS := $(filter-out pthread,$(DIRS))
+endif
+
+ifeq ($(NO_NPTL),1)
+DIRS := $(filter-out nptl,$(DIRS))
+endif
+
+ifeq ($(NO_TLS),1)
DIRS := $(filter-out tls,$(DIRS))
endif