Skip to content

Commit 1aded69

Browse files
authored
hook up c++ thread safety test (main Makefile)
1 parent c00289b commit 1aded69

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ endif
3434

3535
LAPACK_NOOPT := $(filter-out -O0 -O1 -O2 -O3 -Ofast,$(LAPACK_FFLAGS))
3636

37-
SUBDIRS_ALL = $(SUBDIRS) test ctest utest exports benchmark ../laswp ../bench
37+
SUBDIRS_ALL = $(SUBDIRS) test ctest utest exports benchmark ../laswp ../bench cpp_thread_test
3838

3939
.PHONY : all libs netlib $(RELA) test ctest shared install
4040
.NOTPARALLEL : all libs $(RELA) prof lapack-test install blas-test
@@ -127,6 +127,9 @@ ifndef NO_FBLAS
127127
endif
128128
ifndef NO_CBLAS
129129
$(MAKE) -C ctest all
130+
ifeq ($(CPP_THREAD_SAFETY_TEST), 1)
131+
$(MAKE) -C cpp_thread_test all
132+
endif
130133
endif
131134
endif
132135

0 commit comments

Comments
 (0)