X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2FMakefile;h=f5020365f369db37656b5f861950e6db585120c2;hb=f8d6e92d57aacf9388e8ed87cc43b22bd3367c4f;hp=9ba4608ecade34d729622b4f1487632c7802098d;hpb=89c4197256acd0fa340aa9657f167152f8c3f7be;p=oota-llvm.git diff --git a/tools/Makefile b/tools/Makefile index 9ba4608ecad..f5020365f36 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -19,9 +19,9 @@ else OPTIONAL_PARALLEL_DIRS := clang endif -# Build LLD and LLDB if present. Note LLDB must be built last as it depends on +# Build LLDB if present. Note LLDB must be built last as it depends on # the wider LLVM infrastructure (including Clang). -OPTIONAL_DIRS := lld lldb +OPTIONAL_DIRS := lldb # NOTE: The tools are organized into five groups of four consisting of one # large and three small executables. This is done to minimize memory load @@ -32,7 +32,8 @@ PARALLEL_DIRS := opt llvm-as llvm-dis llc llvm-ar llvm-nm llvm-link \ macho-dump llvm-objdump llvm-readobj llvm-rtdyld \ llvm-dwarfdump llvm-cov llvm-size llvm-stress llvm-mcmarkup \ llvm-profdata llvm-symbolizer obj2yaml yaml2obj llvm-c-test \ - llvm-vtabledump verify-uselistorder + llvm-cxxdump verify-uselistorder dsymutil llvm-pdbdump \ + llvm-split # If Intel JIT Events support is configured, build an extra tool to test it. ifeq ($(USE_INTEL_JITEVENTS), 1) @@ -73,4 +74,8 @@ ifneq ($(ENABLE_SHARED),1) endif endif +ifneq (,$(filter go,$(BINDINGS_TO_BUILD))) + PARALLEL_DIRS += llvm-go +endif + include $(LEVEL)/Makefile.common