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

Side by Side Diff: tools/Makefile

Issue 14604011: Separate the PNaCl llc into a tool named pnacl-llc (how original!) (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Remove dangling LOCALMOD-BEGIN 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
« no previous file with comments | « tools/LLVMBuild.txt ('k') | tools/pnacl-llc/CMakeLists.txt » ('j') | 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 10 matching lines...) Expand all
21 21
22 # Build LLDB if present. Note LLDB must be built last as it depends on the 22 # Build LLDB if present. Note LLDB must be built last as it depends on the
23 # wider LLVM infrastructure (including Clang). 23 # wider LLVM infrastructure (including Clang).
24 OPTIONAL_DIRS := lldb 24 OPTIONAL_DIRS := lldb
25 25
26 # 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
27 # 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
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 pnacl-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 pnacl-bcanalyzer pnacl-freeze \ 38 llvm-symbolizer pnacl-abicheck pnacl-bcanalyzer pnacl-freeze \
39 pnacl-thaw 39 pnacl-thaw
40 40
41 # If Intel JIT Events support is configured, build an extra tool to test it. 41 # If Intel JIT Events support is configured, build an extra tool to test it.
(...skipping 30 matching lines...) Expand all
72 72
73 # On Win32, loadable modules can be built with ENABLE_SHARED. 73 # On Win32, loadable modules can be built with ENABLE_SHARED.
74 ifneq ($(ENABLE_SHARED),1) 74 ifneq ($(ENABLE_SHARED),1)
75 ifneq (,$(filter $(HOST_OS), Cygwin MingW)) 75 ifneq (,$(filter $(HOST_OS), Cygwin MingW))
76 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ 76 PARALLEL_DIRS := $(filter-out bugpoint-passes, \
77 $(PARALLEL_DIRS)) 77 $(PARALLEL_DIRS))
78 endif 78 endif
79 endif 79 endif
80 80
81 include $(LEVEL)/Makefile.common 81 include $(LEVEL)/Makefile.common
OLDNEW
« no previous file with comments | « tools/LLVMBuild.txt ('k') | tools/pnacl-llc/CMakeLists.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698