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

Side by Side Diff: tools/CMakeLists.txt

Issue 15013003: Copy llvm-bcanalyzer to build pnacl-bcanalyzer. (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/LLVMBuild.txt » ('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
(...skipping 27 matching lines...) Expand all
38 add_subdirectory(bugpoint) 38 add_subdirectory(bugpoint)
39 add_subdirectory(bugpoint-passes) 39 add_subdirectory(bugpoint-passes)
40 add_subdirectory(llvm-bcanalyzer) 40 add_subdirectory(llvm-bcanalyzer)
41 add_subdirectory(llvm-stress) 41 add_subdirectory(llvm-stress)
42 add_subdirectory(llvm-mcmarkup) 42 add_subdirectory(llvm-mcmarkup)
43 43
44 add_subdirectory(llvm-symbolizer) 44 add_subdirectory(llvm-symbolizer)
45 add_subdirectory(pnacl-abicheck) 45 add_subdirectory(pnacl-abicheck)
46 add_subdirectory(pnacl-freeze) 46 add_subdirectory(pnacl-freeze)
47 add_subdirectory(pnacl-thaw) 47 add_subdirectory(pnacl-thaw)
48 add_subdirectory(pnacl-bcanalyzer)
48 add_subdirectory(bc-wrap) 49 add_subdirectory(bc-wrap)
49 50
50 if( NOT WIN32 ) 51 if( NOT WIN32 )
51 add_subdirectory(lto) 52 add_subdirectory(lto)
52 endif() 53 endif()
53 54
54 if( LLVM_ENABLE_PIC ) 55 if( LLVM_ENABLE_PIC )
55 # TODO: support other systems: 56 # TODO: support other systems:
56 if( CMAKE_SYSTEM_NAME STREQUAL "Linux" ) 57 if( CMAKE_SYSTEM_NAME STREQUAL "Linux" )
57 add_subdirectory(gold) 58 add_subdirectory(gold)
58 endif() 59 endif()
59 endif() 60 endif()
60 61
61 add_llvm_external_project(clang) 62 add_llvm_external_project(clang)
62 add_llvm_external_project(lld) 63 add_llvm_external_project(lld)
63 add_llvm_external_project(polly) 64 add_llvm_external_project(polly)
64 65
65 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE) 66 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE)
OLDNEW
« no previous file with comments | « no previous file | tools/LLVMBuild.txt » ('j') | tools/LLVMBuild.txt » ('J')

Powered by Google App Engine
This is Rietveld 408576698