[llvm-commits] [llvm] r97882 - /llvm/trunk/runtime/Makefile
Chris Lattner
sabre at nondot.org
Sat Mar 6 10:54:37 PST 2010
Author: lattner
Date: Sat Mar 6 12:54:37 2010
New Revision: 97882
URL: http://llvm.org/viewvc/llvm-project?rev=97882&view=rev
Log:
disable this for mingw as well, we really need a 'has no dynamic linking' predicate.
Modified:
llvm/trunk/runtime/Makefile
Modified: llvm/trunk/runtime/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/runtime/Makefile?rev=97882&r1=97881&r2=97882&view=diff
==============================================================================
--- llvm/trunk/runtime/Makefile (original)
+++ llvm/trunk/runtime/Makefile Sat Mar 6 12:54:37 2010
@@ -20,7 +20,7 @@
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
More information about the llvm-commits
mailing list