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

Side by Side Diff: tools/Makefile

Issue 14126011: Copy Bitwriter to generate PNaClBitwriter. (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Change file names to use NaCl instead of PNaCl Created 7 years, 7 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
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 17 matching lines...) Expand all
28 # in parallel builds. Please retain this ordering. 28 # in parallel builds. Please retain this ordering.
29 DIRS := llvm-config 29 DIRS := llvm-config
30 PARALLEL_DIRS := opt llvm-as llvm-dis \ 30 PARALLEL_DIRS := opt llvm-as llvm-dis \
31 llc llvm-ranlib llvm-ar llvm-nm \ 31 llc llvm-ranlib llvm-ar llvm-nm \
32 llvm-prof llvm-link \ 32 llvm-prof llvm-link \
33 lli llvm-extract llvm-mc \ 33 lli llvm-extract llvm-mc \
34 bugpoint llvm-bcanalyzer \ 34 bugpoint llvm-bcanalyzer \
35 llvm-diff macho-dump llvm-objdump llvm-readobj \ 35 llvm-diff macho-dump llvm-objdump llvm-readobj \
36 llvm-rtdyld llvm-dwarfdump llvm-cov \ 36 llvm-rtdyld llvm-dwarfdump llvm-cov \
37 llvm-size llvm-stress llvm-mcmarkup bc-wrap pso-stub \ 37 llvm-size llvm-stress llvm-mcmarkup bc-wrap pso-stub \
38 » llvm-symbolizer pnacl-abicheck 38 » llvm-symbolizer pnacl-abicheck pnacl-freeze
39 39
40 # If Intel JIT Events support is configured, build an extra tool to test it. 40 # If Intel JIT Events support is configured, build an extra tool to test it.
41 ifeq ($(USE_INTEL_JITEVENTS), 1) 41 ifeq ($(USE_INTEL_JITEVENTS), 1)
42 PARALLEL_DIRS += llvm-jitlistener 42 PARALLEL_DIRS += llvm-jitlistener
43 endif 43 endif
44 44
45 # Let users override the set of tools to build from the command line. 45 # Let users override the set of tools to build from the command line.
46 ifdef ONLY_TOOLS 46 ifdef ONLY_TOOLS
47 OPTIONAL_PARALLEL_DIRS := 47 OPTIONAL_PARALLEL_DIRS :=
48 OPTIONAL_DIRS := $(findstring lldb,$(ONLY_TOOLS)) 48 OPTIONAL_DIRS := $(findstring lldb,$(ONLY_TOOLS))
(...skipping 22 matching lines...) Expand all
71 71
72 # On Win32, loadable modules can be built with ENABLE_SHARED. 72 # On Win32, loadable modules can be built with ENABLE_SHARED.
73 ifneq ($(ENABLE_SHARED),1) 73 ifneq ($(ENABLE_SHARED),1)
74 ifneq (,$(filter $(HOST_OS), Cygwin MingW)) 74 ifneq (,$(filter $(HOST_OS), Cygwin MingW))
75 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ 75 PARALLEL_DIRS := $(filter-out bugpoint-passes, \
76 $(PARALLEL_DIRS)) 76 $(PARALLEL_DIRS))
77 endif 77 endif
78 endif 78 endif
79 79
80 include $(LEVEL)/Makefile.common 80 include $(LEVEL)/Makefile.common
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698