From 1e93b96117ea324594622c46cf3d48af7ad0551f 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. llvm-svn: 97882 --- llvm/runtime/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/runtime/Makefile b/llvm/runtime/Makefile index f9a40540a0f8..7209867c2f6c 100644 --- a/llvm/runtime/Makefile +++ b/llvm/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