Parcourir la source

disable nptl/tls for linuxthreads targets

Waldemar Brodkorb il y a 7 ans
Parent
commit
37d6ab1450
1 fichiers modifiés avec 7 ajouts et 0 suppressions
  1. 7 0
      test/Makefile

+ 7 - 0
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