1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Don't try to build a plugin on windows.

llvm-svn: 110573
This commit is contained in:
Rafael Espindola 2010-08-09 14:05:42 +00:00
parent fb41984f11
commit 454fd95052

View File

@ -20,7 +20,7 @@ PARALLEL_DIRS := opt llvm-as llvm-dis \
llc llvm-ranlib llvm-ar llvm-nm \ llc llvm-ranlib llvm-ar llvm-nm \
llvm-ld llvm-prof llvm-link \ llvm-ld llvm-prof llvm-link \
lli llvm-extract llvm-mc \ lli llvm-extract llvm-mc \
bugpoint bugpoint-passes llvm-bcanalyzer llvm-stub \ bugpoint llvm-bcanalyzer llvm-stub \
llvmc llvmc
# Let users override the set of tools to build from the command line. # Let users override the set of tools to build from the command line.
@ -45,6 +45,8 @@ ifeq ($(ENABLE_PIC),1)
PARALLEL_DIRS += lto PARALLEL_DIRS += lto
endif endif
PARALLEL_DIRS += bugpoint-passes
# The edis library is only supported if ARM and/or X86 are enabled, and if # 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. # LLVM is being built PIC on platforms that support dylibs.
ifneq ($(DISABLE_EDIS),1) ifneq ($(DISABLE_EDIS),1)