comparison tools/Makefile @ 95:afa8332a0e37 LLVM3.8

LLVM 3.8
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Tue, 13 Oct 2015 17:48:58 +0900
parents 60c9769439b8
children 7d135dc70f03
comparison
equal deleted inserted replaced
84:f3e34b893a5f 95:afa8332a0e37
17 OPTIONAL_PARALLEL_DIRS := $(CLANG_SRC_ROOT) 17 OPTIONAL_PARALLEL_DIRS := $(CLANG_SRC_ROOT)
18 else 18 else
19 OPTIONAL_PARALLEL_DIRS := clang 19 OPTIONAL_PARALLEL_DIRS := clang
20 endif 20 endif
21 21
22 # Build LLD and LLDB if present. Note LLDB must be built last as it depends on 22 # Build LLDB if present. Note LLDB must be built last as it depends on
23 # the wider LLVM infrastructure (including Clang). 23 # the wider LLVM infrastructure (including Clang).
24 OPTIONAL_PARALLEL_DIRS += lld
25 OPTIONAL_DIRS := lldb 24 OPTIONAL_DIRS := lldb
26 25
27 # NOTE: The tools are organized into five groups of four consisting of one 26 # NOTE: The tools are organized into five groups of four consisting of one
28 # large and three small executables. This is done to minimize memory load 27 # large and three small executables. This is done to minimize memory load
29 # in parallel builds. Please retain this ordering. 28 # in parallel builds. Please retain this ordering.
30 DIRS := llvm-config 29 DIRS := llvm-config
31 PARALLEL_DIRS := opt llvm-as llvm-dis llc llvm-ar llvm-nm llvm-link \ 30 PARALLEL_DIRS := opt llvm-as llvm-dis llc llvm-ar llvm-nm llvm-link \
32 lli llvm-extract llvm-mc bugpoint llvm-bcanalyzer llvm-diff \ 31 lli llvm-extract llvm-mc bugpoint llvm-bcanalyzer llvm-diff \
33 macho-dump llvm-objdump llvm-readobj llvm-rtdyld \ 32 llvm-objdump llvm-readobj llvm-rtdyld \
34 llvm-dwarfdump llvm-cov llvm-size llvm-stress llvm-mcmarkup \ 33 llvm-dwarfdump llvm-cov llvm-size llvm-stress llvm-mcmarkup \
35 llvm-profdata llvm-symbolizer obj2yaml yaml2obj llvm-c-test \ 34 llvm-profdata llvm-symbolizer obj2yaml yaml2obj llvm-c-test \
36 llvm-vtabledump verify-uselistorder dsymutil llvm-pdbdump 35 llvm-cxxdump verify-uselistorder dsymutil llvm-pdbdump \
36 llvm-split
37 37
38 # If Intel JIT Events support is configured, build an extra tool to test it. 38 # If Intel JIT Events support is configured, build an extra tool to test it.
39 ifeq ($(USE_INTEL_JITEVENTS), 1) 39 ifeq ($(USE_INTEL_JITEVENTS), 1)
40 PARALLEL_DIRS += llvm-jitlistener 40 PARALLEL_DIRS += llvm-jitlistener
41 endif 41 endif