OLD | NEW |
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 26 matching lines...) Expand all Loading... |
37 | 37 |
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(bc-wrap) | 48 add_subdirectory(bc-wrap) |
48 | 49 |
49 if( NOT WIN32 ) | 50 if( NOT WIN32 ) |
50 add_subdirectory(lto) | 51 add_subdirectory(lto) |
51 endif() | 52 endif() |
52 | 53 |
53 if( LLVM_ENABLE_PIC ) | 54 if( LLVM_ENABLE_PIC ) |
54 # TODO: support other systems: | 55 # TODO: support other systems: |
55 if( CMAKE_SYSTEM_NAME STREQUAL "Linux" ) | 56 if( CMAKE_SYSTEM_NAME STREQUAL "Linux" ) |
56 add_subdirectory(gold) | 57 add_subdirectory(gold) |
57 endif() | 58 endif() |
58 endif() | 59 endif() |
59 | 60 |
60 add_llvm_external_project(clang) | 61 add_llvm_external_project(clang) |
61 add_llvm_external_project(lld) | 62 add_llvm_external_project(lld) |
62 add_llvm_external_project(polly) | 63 add_llvm_external_project(polly) |
63 | 64 |
64 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE) | 65 set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} PARENT_SCOPE) |
OLD | NEW |