diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-08-09 14:05:42 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-08-09 14:05:42 +0000 |
commit | 68f8b27bb966a472bacc970b4ff85cd8a01a5d68 (patch) | |
tree | 7183dfe8450134b8d5017afd960457112ddfbac0 | |
parent | f355e0cacd411ad6e7b568373f966423a2c433f4 (diff) | |
download | bcm5719-llvm-68f8b27bb966a472bacc970b4ff85cd8a01a5d68.tar.gz bcm5719-llvm-68f8b27bb966a472bacc970b4ff85cd8a01a5d68.zip |
Don't try to build a plugin on windows.
llvm-svn: 110573
-rw-r--r-- | llvm/tools/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/tools/Makefile b/llvm/tools/Makefile index 7e5f3aa25fd..e6d9207a1dc 100644 --- a/llvm/tools/Makefile +++ b/llvm/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) |