summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-05 01:00:34 +0000
committerChris Lattner <sabre@nondot.org>2010-03-05 01:00:34 +0000
commit8550592b801d752753c922e0831d37da8013fc4b (patch)
treed24e7f471208c1462469e6456140738bccbe40f2 /runtime
parent23e6d2b88a34e4a7aea9120446683c598da470d7 (diff)
downloadllvm-8550592b801d752753c922e0831d37da8013fc4b.tar.gz
llvm-8550592b801d752753c922e0831d37da8013fc4b.tar.bz2
llvm-8550592b801d752753c922e0831d37da8013fc4b.tar.xz
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
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/Makefile b/runtime/Makefile
index 1e10451425..f9a40540a0 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