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-freeze \ | 33 PARALLEL_DIRS := pnacl-llc pnacl-abicheck pnacl-bcanalyzer pnacl-freeze \ |
34 pnacl-thaw pnacl-bccompress pnacl-bcdis \ | 34 pnacl-bcfuzz pnacl-thaw pnacl-bccompress pnacl-bcdis \ |
jvoung (off chromium)
2015/06/01 17:26:36
I don't see a new pnacl-bcfuzz directory
Karl
2015/06/01 22:40:56
Oops. Fixing.
| |
35 opt llvm-as llvm-dis llc llvm-ar llvm-nm llvm-link \ | 35 opt llvm-as llvm-dis llc llvm-ar llvm-nm llvm-link \ |
36 lli llvm-extract llvm-mc bugpoint llvm-bcanalyzer llvm-diff \ | 36 lli llvm-extract llvm-mc bugpoint llvm-bcanalyzer llvm-diff \ |
37 macho-dump llvm-objdump llvm-readobj llvm-rtdyld \ | 37 macho-dump llvm-objdump llvm-readobj llvm-rtdyld \ |
38 llvm-dwarfdump llvm-cov llvm-size llvm-stress llvm-mcmarkup \ | 38 llvm-dwarfdump llvm-cov llvm-size llvm-stress llvm-mcmarkup \ |
39 llvm-profdata llvm-symbolizer obj2yaml yaml2obj llvm-c-test \ | 39 llvm-profdata llvm-symbolizer obj2yaml yaml2obj llvm-c-test \ |
40 llvm-cxxdump verify-uselistorder dsymutil llvm-pdbdump | 40 llvm-cxxdump verify-uselistorder dsymutil llvm-pdbdump |
41 | 41 |
42 # If Intel JIT Events support is configured, build an extra tool to test it. | 42 # If Intel JIT Events support is configured, build an extra tool to test it. |
43 ifeq ($(USE_INTEL_JITEVENTS), 1) | 43 ifeq ($(USE_INTEL_JITEVENTS), 1) |
44 PARALLEL_DIRS += llvm-jitlistener | 44 PARALLEL_DIRS += llvm-jitlistener |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
81 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ | 81 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ |
82 $(PARALLEL_DIRS)) | 82 $(PARALLEL_DIRS)) |
83 endif | 83 endif |
84 endif | 84 endif |
85 | 85 |
86 ifneq (,$(filter go,$(BINDINGS_TO_BUILD))) | 86 ifneq (,$(filter go,$(BINDINGS_TO_BUILD))) |
87 PARALLEL_DIRS += llvm-go | 87 PARALLEL_DIRS += llvm-go |
88 endif | 88 endif |
89 | 89 |
90 include $(LEVEL)/Makefile.common | 90 include $(LEVEL)/Makefile.common |
OLD | NEW |