From: Chris Lattner Date: Fri, 5 Mar 2010 01:00:34 +0000 (+0000) Subject: disable libprofile on cygwin, patch by Aaron Gray. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=8550592b801d752753c922e0831d37da8013fc4b disable libprofile on cygwin, patch by Aaron Gray. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97772 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/runtime/Makefile b/runtime/Makefile index 1e104514258..f9a40540a0f 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -20,6 +20,10 @@ ifeq ($(ARCH), Sparc) PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS)) endif +ifeq ($(OS), Cygwin) +PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS)) +endif + endif include $(LEVEL)/Makefile.common