| OLD | NEW |
| 1 ##===- tools/Makefile --------------------------------------*- Makefile -*-===## | 1 ##===- tools/Makefile --------------------------------------*- Makefile -*-===## |
| 2 # | 2 # |
| 3 # The LLVM Compiler Infrastructure | 3 # The LLVM Compiler Infrastructure |
| 4 # | 4 # |
| 5 # This file is distributed under the University of Illinois Open Source | 5 # This file is distributed under the University of Illinois Open Source |
| 6 # License. See LICENSE.TXT for details. | 6 # License. See LICENSE.TXT for details. |
| 7 # | 7 # |
| 8 ##===----------------------------------------------------------------------===## | 8 ##===----------------------------------------------------------------------===## |
| 9 | 9 |
| 10 LEVEL := .. | 10 LEVEL := .. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 # Build LLD and LLDB if present. Note LLDB must be built last as it depends on | 24 # Build LLD and LLDB if present. Note LLDB must be built last as it depends on |
| 25 # the wider LLVM infrastructure (including Clang). | 25 # the wider LLVM infrastructure (including Clang). |
| 26 OPTIONAL_PARALLEL_DIRS += lld | 26 OPTIONAL_PARALLEL_DIRS += lld |
| 27 OPTIONAL_DIRS := lldb | 27 OPTIONAL_DIRS := lldb |
| 28 | 28 |
| 29 # NOTE: The tools are organized into five groups of four consisting of one | 29 # NOTE: The tools are organized into five groups of four consisting of one |
| 30 # large and three small executables. This is done to minimize memory load | 30 # large and three small executables. This is done to minimize memory load |
| 31 # in parallel builds. Please retain this ordering. | 31 # in parallel builds. Please retain this ordering. |
| 32 DIRS := llvm-config | 32 DIRS := llvm-config |
| 33 PARALLEL_DIRS := pnacl-llc pnacl-abicheck pnacl-bcanalyzer pnacl-bcfuzz \ | 33 PARALLEL_DIRS := pnacl-llc pnacl-abicheck pnacl-bcanalyzer pnacl-bcfuzz \ |
| 34 pnacl-freeze pnacl-thaw pnacl-bccompress pnacl-bcdis \ | 34 pnacl-freeze pnacl-hack-memset pnacl-thaw pnacl-bccompress \ |
| 35 pnacl-bcdis \ |
| 35 pnacl-addnames opt llvm-as llvm-dis llc llvm-ar llvm-nm \ | 36 pnacl-addnames opt llvm-as llvm-dis llc llvm-ar llvm-nm \ |
| 36 llvm-link lli llvm-extract llvm-mc bugpoint llvm-bcanalyzer \ | 37 llvm-link lli llvm-extract llvm-mc bugpoint llvm-bcanalyzer \ |
| 37 llvm-diff macho-dump llvm-objdump llvm-readobj llvm-rtdyld \ | 38 llvm-diff macho-dump llvm-objdump llvm-readobj llvm-rtdyld \ |
| 38 llvm-dwarfdump llvm-cov llvm-size llvm-stress llvm-mcmarkup \ | 39 llvm-dwarfdump llvm-cov llvm-size llvm-stress llvm-mcmarkup \ |
| 39 llvm-profdata llvm-symbolizer obj2yaml yaml2obj llvm-c-test \ | 40 llvm-profdata llvm-symbolizer obj2yaml yaml2obj llvm-c-test \ |
| 40 llvm-cxxdump verify-uselistorder dsymutil llvm-pdbdump | 41 llvm-cxxdump verify-uselistorder dsymutil llvm-pdbdump |
| 41 | 42 |
| 42 # If Intel JIT Events support is configured, build an extra tool to test it. | 43 # If Intel JIT Events support is configured, build an extra tool to test it. |
| 43 ifeq ($(USE_INTEL_JITEVENTS), 1) | 44 ifeq ($(USE_INTEL_JITEVENTS), 1) |
| 44 PARALLEL_DIRS += llvm-jitlistener | 45 PARALLEL_DIRS += llvm-jitlistener |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ | 82 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ |
| 82 $(PARALLEL_DIRS)) | 83 $(PARALLEL_DIRS)) |
| 83 endif | 84 endif |
| 84 endif | 85 endif |
| 85 | 86 |
| 86 ifneq (,$(filter go,$(BINDINGS_TO_BUILD))) | 87 ifneq (,$(filter go,$(BINDINGS_TO_BUILD))) |
| 87 PARALLEL_DIRS += llvm-go | 88 PARALLEL_DIRS += llvm-go |
| 88 endif | 89 endif |
| 89 | 90 |
| 90 include $(LEVEL)/Makefile.common | 91 include $(LEVEL)/Makefile.common |
| OLD | NEW |