[cfe-commits] r97892 - /cfe/trunk/tools/Makefile

Chris Lattner sabre at nondot.org
Sat Mar 6 16:17:28 PST 2010


Author: lattner
Date: Sat Mar  6 18:17:28 2010
New Revision: 97892

URL: http://llvm.org/viewvc/llvm-project?rev=97892&view=rev
Log:
disable these dirs which rely on dynamic linking on mingw/cygwin

Modified:
    cfe/trunk/tools/Makefile

Modified: cfe/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/Makefile?rev=97892&r1=97891&r2=97892&view=diff
==============================================================================
--- cfe/trunk/tools/Makefile (original)
+++ cfe/trunk/tools/Makefile Sat Mar  6 18:17:28 2010
@@ -10,4 +10,11 @@
 LEVEL := ../../..
 DIRS := driver CIndex c-index-test
 
+include $(LEVEL)/Makefile.config
+
+ifeq ($(OS), $(filter $(OS), Cygwin MingW))
+DIRS := $(filter $(DIRS), CIndex)
+DIRS := $(filter $(DIRS), c-index-test)
+endif
+
 include $(LEVEL)/Makefile.common





More information about the cfe-commits mailing list