| 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 |
| 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 Loading... |
| 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) |
| OLD | NEW |