From 1c383ca2ef202cc55882a5fc27cc12405a23bdeb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 6 Mar 2010 18:54:37 +0000 Subject: [PATCH] disable this for mingw as well, we really need a 'has no dynamic linking' predicate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97882 91177308-0d34-0410-b5e6-96231b3b80d8 --- runtime/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/Makefile b/runtime/Makefile index f9a40540a0f..7209867c2f6 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -20,7 +20,7 @@ ifeq ($(ARCH), Sparc) PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS)) endif -ifeq ($(OS), Cygwin) +ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW)) PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS)) endif -- 2.34.1