Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: tools/Makefile

Issue 1156103003: Initial implementation of a record-level bitcode fuzzer. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@fuzz
Patch Set: Fix nits. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« tools/LLVMBuild.txt ('K') | « tools/LLVMBuild.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« tools/LLVMBuild.txt ('K') | « tools/LLVMBuild.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698