diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/Makefile | 5 |
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 |