From 37d6ab14503fba883ed81678ef05e0bc71eb51d8 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 30 Oct 2016 02:27:34 +0100 Subject: disable nptl/tls for linuxthreads targets --- test/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- cgit v1.2.3