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

Side by Side Diff: tools/CMakeLists.txt

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: 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 | « no previous file | tools/LLVMBuild.txt » ('j') | tools/pnacl-llc/Makefile » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # NOTE: The tools are organized into groups of four consisting of one large and 1 # NOTE: The tools are organized into groups of four consisting of one large and
2 # three small executables. This is done to minimize memory load in parallel 2 # three small executables. This is done to minimize memory load in parallel
3 # builds. Please retain this ordering. 3 # builds. Please retain this ordering.
4 4
5 if( NOT WIN32 OR MSYS OR CYGWIN ) 5 if( NOT WIN32 OR MSYS OR CYGWIN )
6 # We currently require 'sed' to build llvm-config, so don't try to build it 6 # We currently require 'sed' to build llvm-config, so don't try to build it
7 # on pure Win32. 7 # on pure Win32.
8 add_subdirectory(llvm-config) 8 add_subdirectory(llvm-config)
9 endif() 9 endif()
10 10
11 add_subdirectory(opt) 11 add_subdirectory(opt)
12 add_subdirectory(llvm-as) 12 add_subdirectory(llvm-as)
13 add_subdirectory(llvm-dis) 13 add_subdirectory(llvm-dis)
14 add_subdirectory(llvm-mc) 14 add_subdirectory(llvm-mc)
15 15
16 add_subdirectory(llc) 16 add_subdirectory(llc)
17 add_subdirectory(pnacl-llc)
17 add_subdirectory(llvm-ranlib) 18 add_subdirectory(llvm-ranlib)
18 add_subdirectory(llvm-ar) 19 add_subdirectory(llvm-ar)
19 add_subdirectory(llvm-nm) 20 add_subdirectory(llvm-nm)
20 add_subdirectory(llvm-size) 21 add_subdirectory(llvm-size)
21 22
22 add_subdirectory(llvm-cov) 23 add_subdirectory(llvm-cov)
23 add_subdirectory(llvm-prof) 24 add_subdirectory(llvm-prof)
24 add_subdirectory(llvm-link) 25 add_subdirectory(llvm-link)
25 add_subdirectory(lli) 26 add_subdirectory(lli)
26 27
(...skipping 30 matching lines...) Expand all
57 if( CMAKE_SYSTEM_NAME STREQUAL "Linux" ) 58 if( CMAKE_SYSTEM_NAME STREQUAL "Linux" )
58 add_subdirectory(gold) 59 add_subdirectory(gold)
59 endif() 60 endif()
60 endif() 61 endif()
61 62
62 add_llvm_external_project(clang) 63 add_llvm_external_project(clang)
63 add_llvm_external_project(lld) 64 add_llvm_external_project(lld)
64 add_llvm_external_project(polly) 65 add_llvm_external_project(polly)
65 66
66 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE) 67 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)
OLDNEW
« no previous file with comments | « no previous file | tools/LLVMBuild.txt » ('j') | tools/pnacl-llc/Makefile » ('J')

Powered by Google App Engine
This is Rietveld 408576698