summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-08-09 14:05:42 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-08-09 14:05:42 +0000
commit0b5b1028118333a570c8559390cf6eadc9edd37e (patch)
tree592820d1b6625614f3ca4d6b3c2cc88f43848b48 /tools/Makefile
parent1f74ad761428a140e4e349799bf3158744124cf3 (diff)
downloadllvm-0b5b1028118333a570c8559390cf6eadc9edd37e.tar.gz
llvm-0b5b1028118333a570c8559390cf6eadc9edd37e.tar.bz2
llvm-0b5b1028118333a570c8559390cf6eadc9edd37e.tar.xz
Don't try to build a plugin on windows.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110573 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 7e5f3aa25f..e6d9207a1d 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -20,7 +20,7 @@ PARALLEL_DIRS := opt llvm-as llvm-dis \
llc llvm-ranlib llvm-ar llvm-nm \
llvm-ld llvm-prof llvm-link \
lli llvm-extract llvm-mc \
- bugpoint bugpoint-passes llvm-bcanalyzer llvm-stub \
+ bugpoint llvm-bcanalyzer llvm-stub \
llvmc
# Let users override the set of tools to build from the command line.
@@ -45,6 +45,8 @@ ifeq ($(ENABLE_PIC),1)
PARALLEL_DIRS += lto
endif
+ PARALLEL_DIRS += bugpoint-passes
+
# The edis library is only supported if ARM and/or X86 are enabled, and if
# LLVM is being built PIC on platforms that support dylibs.
ifneq ($(DISABLE_EDIS),1)