diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-30 02:27:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-30 02:27:34 +0100 |
commit | 37d6ab14503fba883ed81678ef05e0bc71eb51d8 (patch) | |
tree | 1541258f03afd412ebc612020520c64cba99af8f | |
parent | 264f959bb6a6acdec577f20d23bf9b533268195b (diff) |
disable nptl/tls for linuxthreads targets
-rw-r--r-- | test/Makefile | 7 |
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 |