summaryrefslogtreecommitdiff
path: root/lib/Transforms/Makefile
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-03-11 19:49:42 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-03-11 19:49:42 +0000
commitad9d21a9527ab8a236e11b6f83bbf67a7a97406d (patch)
tree64afda7b9e0b0f3f7a9fc299f7178489cec3f771 /lib/Transforms/Makefile
parent6b3ef693d78764ba0077cc0c9e770fa57c724b7a (diff)
downloadllvm-ad9d21a9527ab8a236e11b6f83bbf67a7a97406d.tar.gz
llvm-ad9d21a9527ab8a236e11b6f83bbf67a7a97406d.tar.bz2
llvm-ad9d21a9527ab8a236e11b6f83bbf67a7a97406d.tar.xz
Disable plugins / shared stuff generation on windows targets.
This fixes fallout from recent PIC/delibtoolize changes and unbreaks build on cygming. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66686 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Makefile')
-rw-r--r--lib/Transforms/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Transforms/Makefile b/lib/Transforms/Makefile
index bfdb2bf81d..32ac9fc911 100644
--- a/lib/Transforms/Makefile
+++ b/lib/Transforms/Makefile
@@ -10,5 +10,10 @@
LEVEL = ../..
PARALLEL_DIRS = Utils Instrumentation Scalar IPO Hello
+# No support for plugins on windows targets
+ifeq ($(OS), $(filter $(OS), Cygwin MingW))
+ PARALLEL_DIRS := $(filter-out Hello, $(DIRS))
+endif
+
include $(LEVEL)/Makefile.common