[libc++][doc] Update the release notes for LLVM 18 (#78324)
[llvm-project.git] / clang / cmake / caches / 3-stage-base.cmake
blob63a1c21528dc9e8b5ac2a39189b187bde54aa594
1 set(CMAKE_BUILD_TYPE RELEASE CACHE STRING "")
2 set(CLANG_ENABLE_BOOTSTRAP ON CACHE BOOL "")
4 set(LLVM_ENABLE_PROJECTS "clang;lld" CACHE STRING "")
5 set(LLVM_ENABLE_RUNTIMES "compiler-rt;libcxx;libcxxabi" CACHE STRING "")
7 if(APPLE)
8   # Use LLD to have fewer requirements on system linker, unless we're on an apple
9   # platform where the system compiler is to be preferred.
10   set(BOOTSTRAP_LLVM_ENABLE_LLD OFF CACHE BOOL "")
11   set(BOOTSTRAP_LLVM_ENABLE_LTO ON CACHE BOOL "")
12 elseif(CMAKE_HOST_UNIX)
13   # s390/SystemZ is unsupported by LLD, so don't try to enable LTO if it
14   # cannot work.
15   # We do our own uname business here since the appropriate variables from CMake
16   # and llvm are not yet available.
17   find_program(CMAKE_UNAME uname /bin /usr/bin /usr/local/bin )
18   if(CMAKE_UNAME)
19     exec_program(${CMAKE_UNAME} ARGS -m OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_PROCESSOR
20         RETURN_VALUE val)
21   endif(CMAKE_UNAME)
23   if("${CMAKE_HOST_SYSTEM_PROCESSOR}" MATCHES "s390")
24     set(BOOTSTRAP_LLVM_ENABLE_LTO OFF CACHE BOOL "")
25     set(BOOTSTRAP_LLVM_ENABLE_LLD OFF CACHE BOOL "")
26   else()
27     set(BOOTSTRAP_LLVM_ENABLE_LTO ON CACHE BOOL "")
28     set(BOOTSTRAP_LLVM_ENABLE_LLD ON CACHE BOOL "")
29   endif()
31 else()
32   set(BOOTSTRAP_LLVM_ENABLE_LTO ON CACHE BOOL "")
33   set(BOOTSTRAP_LLVM_ENABLE_LLD ON CACHE BOOL "")
34 endif()
37 set(CLANG_BOOTSTRAP_TARGETS
38   clang
39   check-all
40   check-llvm
41   check-clang
42   test-suite CACHE STRING "")
44 set(CLANG_BOOTSTRAP_CMAKE_ARGS
45   -C ${CMAKE_CURRENT_LIST_DIR}/3-stage-base.cmake
46   CACHE STRING "")