summaryrefslogtreecommitdiffstats
path: root/llvm/lib
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
commita09ba46ee391cb5ea8c667fbd29b8d3017d9e06e (patch)
treeb66016b2d7a69a9dfc1859cc8865200ebff6cb47 /llvm/lib
parent1efa437be6a6cf30520ce86448d422ea9d78d627 (diff)
downloadbcm5719-llvm-a09ba46ee391cb5ea8c667fbd29b8d3017d9e06e.tar.gz
bcm5719-llvm-a09ba46ee391cb5ea8c667fbd29b8d3017d9e06e.zip
Disable plugins / shared stuff generation on windows targets.
This fixes fallout from recent PIC/delibtoolize changes and unbreaks build on cygming. llvm-svn: 66686
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Transforms/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Makefile b/llvm/lib/Transforms/Makefile
index bfdb2bf81d9..32ac9fc911e 100644
--- a/llvm/lib/Transforms/Makefile
+++ b/llvm/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
OpenPOWER on IntegriCloud