[llvm-commits] [llvm] r97772 - /llvm/trunk/runtime/Makefile
Chris Lattner
sabre at nondot.org
Thu Mar 4 17:00:35 PST 2010
Author: lattner
Date: Thu Mar 4 19:00:34 2010
New Revision: 97772
URL: http://llvm.org/viewvc/llvm-project?rev=97772&view=rev
Log:
disable libprofile on cygwin, patch by Aaron Gray.
Modified:
llvm/trunk/runtime/Makefile
Modified: llvm/trunk/runtime/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/runtime/Makefile?rev=97772&r1=97771&r2=97772&view=diff
==============================================================================
--- llvm/trunk/runtime/Makefile (original)
+++ llvm/trunk/runtime/Makefile Thu Mar 4 19:00:34 2010
@@ -20,6 +20,10 @@
PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
endif
+ifeq ($(OS), Cygwin)
+PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
+endif
+
endif
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list