| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 1 | # CMake build for CompilerRT. | 
|  | 2 | # | 
|  | 3 | # This build assumes that CompilerRT is checked out into the | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 4 | # 'projects/compiler-rt' inside of an LLVM tree. | 
|  | 5 | # Standalone build system for CompilerRT is not yet ready. | 
| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 6 | # | 
|  | 7 | # An important constraint of the build is that it only produces libraries | 
|  | 8 | # based on the ability of the host toolchain to target various platforms. | 
|  | 9 |  | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 10 | # Check if compiler-rt is built as a standalone project. | 
|  | 11 | if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) | 
| Alexey Samsonov | 4462ec6 | 2014-07-28 22:04:19 +0000 | [diff] [blame] | 12 | project(CompilerRT C CXX) | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 13 | set(COMPILER_RT_STANDALONE_BUILD TRUE) | 
|  | 14 | else() | 
|  | 15 | set(COMPILER_RT_STANDALONE_BUILD FALSE) | 
|  | 16 | endif() | 
|  | 17 |  | 
| Chandler Carruth | c78ad00 | 2012-06-25 08:40:10 +0000 | [diff] [blame] | 18 | # The CompilerRT build system requires CMake version 2.8.8 or higher in order | 
|  | 19 | # to use its support for building convenience "libraries" as a collection of | 
|  | 20 | # .o files. This is particularly useful in producing larger, more complex | 
|  | 21 | # runtime libraries. | 
| Hans Wennborg | a97442f | 2014-02-11 21:46:19 +0000 | [diff] [blame] | 22 | if (NOT MSVC) | 
|  | 23 | cmake_minimum_required(VERSION 2.8.8) | 
|  | 24 | else() | 
|  | 25 | # Version 2.8.12.1 is required to build with Visual Studion 2013. | 
|  | 26 | cmake_minimum_required(VERSION 2.8.12.1) | 
|  | 27 | endif() | 
|  | 28 |  | 
| NAKAMURA Takumi | 9cd9ad6 | 2014-02-26 06:45:11 +0000 | [diff] [blame] | 29 | # FIXME: It may be removed when we use 2.8.12. | 
|  | 30 | if(CMAKE_VERSION VERSION_LESS 2.8.12) | 
|  | 31 | # Invalidate a couple of keywords. | 
|  | 32 | set(cmake_2_8_12_INTERFACE) | 
|  | 33 | set(cmake_2_8_12_PRIVATE) | 
|  | 34 | else() | 
|  | 35 | # Use ${cmake_2_8_12_KEYWORD} intead of KEYWORD in target_link_libraries(). | 
|  | 36 | set(cmake_2_8_12_INTERFACE INTERFACE) | 
|  | 37 | set(cmake_2_8_12_PRIVATE PRIVATE) | 
|  | 38 | if(POLICY CMP0022) | 
|  | 39 | cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required | 
|  | 40 | endif() | 
|  | 41 | endif() | 
|  | 42 |  | 
| Alexey Samsonov | 20abdf6 | 2013-10-01 12:52:15 +0000 | [diff] [blame] | 43 | # Top level target used to build all compiler-rt libraries. | 
| Alexey Samsonov | a2fee5d | 2014-02-24 11:32:49 +0000 | [diff] [blame] | 44 | add_custom_target(compiler-rt ALL) | 
| Alexey Samsonov | 20abdf6 | 2013-10-01 12:52:15 +0000 | [diff] [blame] | 45 |  | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 46 | if (NOT COMPILER_RT_STANDALONE_BUILD) | 
|  | 47 | # Compute the Clang version from the LLVM version. | 
|  | 48 | # FIXME: We should be able to reuse CLANG_VERSION variable calculated | 
|  | 49 | #        in Clang cmake files, instead of copying the rules here. | 
|  | 50 | string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION | 
|  | 51 | ${PACKAGE_VERSION}) | 
|  | 52 | # Setup the paths where compiler-rt runtimes and headers should be stored. | 
|  | 53 | set(COMPILER_RT_OUTPUT_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/clang/${CLANG_VERSION}) | 
| Evgeniy Stepanov | 322e89c | 2014-02-27 08:41:40 +0000 | [diff] [blame] | 54 | set(COMPILER_RT_EXEC_OUTPUT_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 55 | set(COMPILER_RT_INSTALL_PATH lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION}) | 
| Alexey Samsonov | cd8535a | 2014-02-19 11:18:47 +0000 | [diff] [blame] | 56 | option(COMPILER_RT_INCLUDE_TESTS "Generate and build compiler-rt unit tests." | 
|  | 57 | ${LLVM_INCLUDE_TESTS}) | 
| Alexey Samsonov | 2f27f0b | 2014-02-24 11:22:39 +0000 | [diff] [blame] | 58 | option(COMPILER_RT_ENABLE_WERROR "Fail and stop if warning is triggered" | 
|  | 59 | ${LLVM_ENABLE_WERROR}) | 
| Timur Iskhodzhanov | b0279d7 | 2014-05-12 08:55:20 +0000 | [diff] [blame] | 60 | # Use just-built Clang to compile/link tests on all platforms, except for | 
|  | 61 | # Windows where we need to use clang-cl instead. | 
|  | 62 | if(NOT MSVC) | 
|  | 63 | set(COMPILER_RT_TEST_COMPILER ${LLVM_RUNTIME_OUTPUT_INTDIR}/clang) | 
| Timur Iskhodzhanov | b0279d7 | 2014-05-12 08:55:20 +0000 | [diff] [blame] | 64 | else() | 
| Timur Iskhodzhanov | 82ee043 | 2014-05-28 08:38:13 +0000 | [diff] [blame] | 65 | set(COMPILER_RT_TEST_COMPILER ${LLVM_RUNTIME_OUTPUT_INTDIR}/clang.exe) | 
| Timur Iskhodzhanov | b0279d7 | 2014-05-12 08:55:20 +0000 | [diff] [blame] | 66 | endif() | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 67 | else() | 
|  | 68 | # Take output dir and install path from the user. | 
|  | 69 | set(COMPILER_RT_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE PATH | 
|  | 70 | "Path where built compiler-rt libraries should be stored.") | 
| Evgeniy Stepanov | 322e89c | 2014-02-27 08:41:40 +0000 | [diff] [blame] | 71 | set(COMPILER_RT_EXEC_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/bin CACHE PATH | 
|  | 72 | "Path where built compiler-rt executables should be stored.") | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 73 | set(COMPILER_RT_INSTALL_PATH ${CMAKE_INSTALL_PREFIX} CACHE PATH | 
|  | 74 | "Path where built compiler-rt libraries should be installed.") | 
| Alexey Samsonov | cd8535a | 2014-02-19 11:18:47 +0000 | [diff] [blame] | 75 | option(COMPILER_RT_INCLUDE_TESTS "Generate and build compiler-rt unit tests." OFF) | 
| Alexey Samsonov | 2f27f0b | 2014-02-24 11:22:39 +0000 | [diff] [blame] | 76 | option(COMPILER_RT_ENABLE_WERROR "Fail and stop if warning is triggered" OFF) | 
| Alexey Samsonov | 150d62a | 2014-02-19 13:01:03 +0000 | [diff] [blame] | 77 | # Use a host compiler to compile/link tests. | 
| Greg Fitzgerald | c744492 | 2014-04-01 21:54:56 +0000 | [diff] [blame] | 78 | set(COMPILER_RT_TEST_COMPILER ${CMAKE_C_COMPILER} CACHE PATH "Compiler to use for testing") | 
| Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 79 |  | 
| Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 80 | if (NOT LLVM_CONFIG_PATH) | 
| Alexey Samsonov | 1464b59 | 2014-03-05 09:21:49 +0000 | [diff] [blame] | 81 | find_program(LLVM_CONFIG_PATH "llvm-config" | 
|  | 82 | DOC "Path to llvm-config binary") | 
| Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 83 | if (NOT LLVM_CONFIG_PATH) | 
|  | 84 | message(FATAL_ERROR "llvm-config not found: specify LLVM_CONFIG_PATH") | 
|  | 85 | endif() | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 86 | endif() | 
| Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 87 | execute_process( | 
|  | 88 | COMMAND ${LLVM_CONFIG_PATH} "--obj-root" "--bindir" "--libdir" "--src-root" | 
|  | 89 | RESULT_VARIABLE HAD_ERROR | 
|  | 90 | OUTPUT_VARIABLE CONFIG_OUTPUT) | 
|  | 91 | if (HAD_ERROR) | 
|  | 92 | message(FATAL_ERROR "llvm-config failed with status ${HAD_ERROR}") | 
|  | 93 | endif() | 
|  | 94 | string(REGEX REPLACE "[ \t]*[\r\n]+[ \t]*" ";" CONFIG_OUTPUT ${CONFIG_OUTPUT}) | 
|  | 95 | list(GET CONFIG_OUTPUT 0 LLVM_BINARY_DIR) | 
|  | 96 | list(GET CONFIG_OUTPUT 1 LLVM_TOOLS_BINARY_DIR) | 
|  | 97 | list(GET CONFIG_OUTPUT 2 LLVM_LIBRARY_DIR) | 
|  | 98 | list(GET CONFIG_OUTPUT 3 LLVM_MAIN_SRC_DIR) | 
|  | 99 |  | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 100 | # Make use of LLVM CMake modules. | 
| Alexey Samsonov | f97f07b | 2014-03-13 11:55:27 +0000 | [diff] [blame] | 101 | file(TO_CMAKE_PATH ${LLVM_BINARY_DIR} LLVM_BINARY_DIR_CMAKE_STYLE) | 
|  | 102 | set(LLVM_CMAKE_PATH "${LLVM_BINARY_DIR_CMAKE_STYLE}/share/llvm/cmake") | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 103 | list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_PATH}") | 
|  | 104 | # Get some LLVM variables from LLVMConfig. | 
|  | 105 | include("${LLVM_CMAKE_PATH}/LLVMConfig.cmake") | 
|  | 106 |  | 
| Chandler Carruth | 11fb7a4 | 2014-12-29 12:26:30 +0000 | [diff] [blame] | 107 | set(LLVM_LIBRARY_OUTPUT_INTDIR | 
|  | 108 | ${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX}) | 
| Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 109 |  | 
|  | 110 | # Find Python interpreter. | 
|  | 111 | set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5) | 
|  | 112 | include(FindPythonInterp) | 
|  | 113 | if(NOT PYTHONINTERP_FOUND) | 
|  | 114 | message(FATAL_ERROR " | 
|  | 115 | Unable to find Python interpreter required testing. Please install Python | 
|  | 116 | or specify the PYTHON_EXECUTABLE CMake variable.") | 
|  | 117 | endif() | 
|  | 118 |  | 
|  | 119 | # Define default arguments to lit. | 
|  | 120 | set(LIT_ARGS_DEFAULT "-sv") | 
|  | 121 | if (MSVC OR XCODE) | 
|  | 122 | set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar") | 
|  | 123 | endif() | 
|  | 124 | set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit") | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 125 | endif() | 
|  | 126 |  | 
| Greg Fitzgerald | c744492 | 2014-04-01 21:54:56 +0000 | [diff] [blame] | 127 | if("${COMPILER_RT_TEST_COMPILER}" MATCHES "clang[+]*$") | 
|  | 128 | set(COMPILER_RT_TEST_COMPILER_ID Clang) | 
| Timur Iskhodzhanov | 82ee043 | 2014-05-28 08:38:13 +0000 | [diff] [blame] | 129 | elseif("${COMPILER_RT_TEST_COMPILER}" MATCHES "clang.*.exe$") | 
| Timur Iskhodzhanov | 2bdca20 | 2014-05-14 19:10:43 +0000 | [diff] [blame] | 130 | set(COMPILER_RT_TEST_COMPILER_ID Clang) | 
| Greg Fitzgerald | c744492 | 2014-04-01 21:54:56 +0000 | [diff] [blame] | 131 | else() | 
|  | 132 | set(COMPILER_RT_TEST_COMPILER_ID GNU) | 
|  | 133 | endif() | 
|  | 134 |  | 
| Greg Fitzgerald | 1733b5e | 2014-05-20 23:31:26 +0000 | [diff] [blame] | 135 | # Tests using XFAIL use the first value in COMPILER_RT_TEST_TARGET_TRIPLE | 
|  | 136 | set(COMPILER_RT_TEST_TARGET_TRIPLE ${TARGET_TRIPLE} CACHE STRING | 
|  | 137 | "Default triple for cross-compiled executables") | 
|  | 138 | string(REPLACE "-" ";" TARGET_TRIPLE_LIST ${COMPILER_RT_TEST_TARGET_TRIPLE}) | 
|  | 139 | list(GET TARGET_TRIPLE_LIST 0 COMPILER_RT_TEST_TARGET_ARCH) | 
| Greg Fitzgerald | 0f7f731 | 2014-06-02 23:11:24 +0000 | [diff] [blame] | 140 | list(GET TARGET_TRIPLE_LIST 1 COMPILER_RT_TEST_TARGET_OS) | 
|  | 141 | list(GET TARGET_TRIPLE_LIST 2 COMPILER_RT_TEST_TARGET_ABI) | 
|  | 142 |  | 
|  | 143 | if ("${COMPILER_RT_TEST_TARGET_ABI}" STREQUAL "androideabi") | 
|  | 144 | set(ANDROID 1) | 
|  | 145 | endif() | 
| Greg Fitzgerald | 1733b5e | 2014-05-20 23:31:26 +0000 | [diff] [blame] | 146 |  | 
| Alexey Samsonov | 1181a10 | 2014-02-18 14:28:53 +0000 | [diff] [blame] | 147 | string(TOLOWER ${CMAKE_SYSTEM_NAME} COMPILER_RT_OS_DIR) | 
| Alexey Samsonov | 1181a10 | 2014-02-18 14:28:53 +0000 | [diff] [blame] | 148 | set(COMPILER_RT_LIBRARY_OUTPUT_DIR | 
|  | 149 | ${COMPILER_RT_OUTPUT_DIR}/lib/${COMPILER_RT_OS_DIR}) | 
| Alexey Samsonov | 8c2cd86 | 2013-01-20 13:58:10 +0000 | [diff] [blame] | 150 | set(COMPILER_RT_LIBRARY_INSTALL_DIR | 
| Alexey Samsonov | 1181a10 | 2014-02-18 14:28:53 +0000 | [diff] [blame] | 151 | ${COMPILER_RT_INSTALL_PATH}/lib/${COMPILER_RT_OS_DIR}) | 
| Alexey Samsonov | 8c2cd86 | 2013-01-20 13:58:10 +0000 | [diff] [blame] | 152 |  | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 153 | # Add path for custom compiler-rt modules. | 
| Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 154 | set(CMAKE_MODULE_PATH | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 155 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake" | 
| Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 156 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules" | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 157 | ${CMAKE_MODULE_PATH} | 
| Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 158 | ) | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 159 | include(CompilerRTUtils) | 
| Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 160 |  | 
|  | 161 | set(COMPILER_RT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) | 
| Alexey Samsonov | 6a65b18 | 2013-06-06 12:35:48 +0000 | [diff] [blame] | 162 | set(COMPILER_RT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) | 
| Alexey Samsonov | 4c17c1b | 2013-03-19 09:17:35 +0000 | [diff] [blame] | 163 | # Setup custom SDK sysroots. | 
| Alexey Samsonov | 4c17c1b | 2013-03-19 09:17:35 +0000 | [diff] [blame] | 164 | set(COMPILER_RT_LINUX_SDK_SYSROOT ${COMPILER_RT_SOURCE_DIR}/SDKs/linux) | 
| Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 165 |  | 
| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 166 | # Detect whether the current target platform is 32-bit or 64-bit, and setup | 
|  | 167 | # the correct commandline flags needed to attempt to target 32-bit and 64-bit. | 
| Alexey Samsonov | dd8872b | 2013-06-30 16:21:32 +0000 | [diff] [blame] | 168 | if (NOT CMAKE_SIZEOF_VOID_P EQUAL 4 AND | 
|  | 169 | NOT CMAKE_SIZEOF_VOID_P EQUAL 8) | 
|  | 170 | message(FATAL_ERROR "Please use architecture with 4 or 8 byte pointers.") | 
| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 171 | endif() | 
| Hans Wennborg | 67c6e50 | 2013-08-27 01:24:01 +0000 | [diff] [blame] | 172 | if (NOT MSVC) | 
|  | 173 | set(TARGET_64_BIT_CFLAGS "-m64") | 
|  | 174 | set(TARGET_32_BIT_CFLAGS "-m32") | 
|  | 175 | else() | 
|  | 176 | set(TARGET_64_BIT_CFLAGS "") | 
|  | 177 | set(TARGET_32_BIT_CFLAGS "") | 
|  | 178 | endif() | 
| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 179 |  | 
| Alexey Samsonov | 85bd73d | 2012-12-19 15:17:23 +0000 | [diff] [blame] | 180 | function(get_target_flags_for_arch arch out_var) | 
| Alexey Samsonov | 4b0ee8e | 2013-01-18 13:10:42 +0000 | [diff] [blame] | 181 | list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX) | 
|  | 182 | if(ARCH_INDEX EQUAL -1) | 
| Alexey Samsonov | 85bd73d | 2012-12-19 15:17:23 +0000 | [diff] [blame] | 183 | message(FATAL_ERROR "Unsupported architecture: ${arch}") | 
| Alexey Samsonov | 4b0ee8e | 2013-01-18 13:10:42 +0000 | [diff] [blame] | 184 | else() | 
|  | 185 | set(${out_var} ${TARGET_${arch}_CFLAGS} PARENT_SCOPE) | 
| Alexey Samsonov | 85bd73d | 2012-12-19 15:17:23 +0000 | [diff] [blame] | 186 | endif() | 
|  | 187 | endfunction() | 
|  | 188 |  | 
| Timur Iskhodzhanov | b9bd76b | 2014-05-13 14:25:49 +0000 | [diff] [blame] | 189 | # We support running instrumented tests when we're not cross compiling | 
|  | 190 | # and target a UNIX-like system or Windows. | 
|  | 191 | # We can run tests on Android even when we are cross-compiling. | 
| Greg Fitzgerald | 07c88a1 | 2014-05-14 00:36:15 +0000 | [diff] [blame] | 192 | if(("${CMAKE_HOST_SYSTEM}" STREQUAL "${CMAKE_SYSTEM}" AND (UNIX OR MSVC)) OR ANDROID | 
|  | 193 | OR COMPILER_RT_EMULATOR) | 
| Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 194 | option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" ON) | 
| Alexey Samsonov | c20f5d2 | 2012-12-27 13:19:23 +0000 | [diff] [blame] | 195 | else() | 
| Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 196 | option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" OFF) | 
| Alexey Samsonov | c20f5d2 | 2012-12-27 13:19:23 +0000 | [diff] [blame] | 197 | endif() | 
| Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 198 |  | 
| Peter Collingbourne | cbdea32 | 2013-10-25 23:03:34 +0000 | [diff] [blame] | 199 | option(COMPILER_RT_DEBUG "Build runtimes with full debug info" OFF) | 
| Peter Collingbourne | cbdea32 | 2013-10-25 23:03:34 +0000 | [diff] [blame] | 200 | # COMPILER_RT_DEBUG_PYBOOL is used by lit.common.configured.in. | 
|  | 201 | pythonize_bool(COMPILER_RT_DEBUG) | 
|  | 202 |  | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 203 | #================================ | 
|  | 204 | # Setup Compiler Flags | 
|  | 205 | #================================ | 
|  | 206 | include(config-ix) | 
|  | 207 |  | 
| Alexey Samsonov | fe7e28c | 2014-03-13 11:31:10 +0000 | [diff] [blame] | 208 | if(MSVC) | 
|  | 209 | append_string_if(COMPILER_RT_HAS_W3_FLAG /W3 CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
|  | 210 | else() | 
|  | 211 | append_string_if(COMPILER_RT_HAS_WALL_FLAG -Wall CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
|  | 212 | endif() | 
| Alexey Samsonov | 2f27f0b | 2014-02-24 11:22:39 +0000 | [diff] [blame] | 213 | if(COMPILER_RT_ENABLE_WERROR) | 
| Alexey Samsonov | fe7e28c | 2014-03-13 11:31:10 +0000 | [diff] [blame] | 214 | append_string_if(COMPILER_RT_HAS_WERROR_FLAG -Werror CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
|  | 215 | append_string_if(COMPILER_RT_HAS_WX_FLAG /WX CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
| Alexey Samsonov | 2f27f0b | 2014-02-24 11:22:39 +0000 | [diff] [blame] | 216 | endif() | 
|  | 217 |  | 
| Alexey Samsonov | bcce197 | 2014-03-18 12:49:22 +0000 | [diff] [blame] | 218 | append_string_if(COMPILER_RT_HAS_STD_CXX11_FLAG -std=c++11 CMAKE_CXX_FLAGS) | 
|  | 219 |  | 
| Reid Kleckner | 0140ce4 | 2014-02-26 21:54:39 +0000 | [diff] [blame] | 220 | # Emulate C99 and C++11's __func__ for MSVC prior to 2013 CTP. | 
| Alexey Samsonov | e3e2a11 | 2014-02-27 06:52:41 +0000 | [diff] [blame] | 221 | if(NOT COMPILER_RT_HAS_FUNC_SYMBOL) | 
| Alexey Samsonov | 8c4c097 | 2014-02-27 07:03:32 +0000 | [diff] [blame] | 222 | add_definitions(-D__func__=__FUNCTION__) | 
| Reid Kleckner | 0140ce4 | 2014-02-26 21:54:39 +0000 | [diff] [blame] | 223 | endif() | 
|  | 224 |  | 
| Chandler Carruth | c1c9d58 | 2012-08-29 00:13:11 +0000 | [diff] [blame] | 225 | # Provide some common commmandline flags for Sanitizer runtimes. | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 226 | append_list_if(COMPILER_RT_HAS_FPIC_FLAG -fPIC SANITIZER_COMMON_CFLAGS) | 
|  | 227 | append_list_if(COMPILER_RT_HAS_FNO_BUILTIN_FLAG -fno-builtin SANITIZER_COMMON_CFLAGS) | 
|  | 228 | append_list_if(COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG -fno-exceptions SANITIZER_COMMON_CFLAGS) | 
|  | 229 | append_list_if(COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG -fomit-frame-pointer SANITIZER_COMMON_CFLAGS) | 
|  | 230 | append_list_if(COMPILER_RT_HAS_FUNWIND_TABLES_FLAG -funwind-tables SANITIZER_COMMON_CFLAGS) | 
|  | 231 | append_list_if(COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG -fno-stack-protector SANITIZER_COMMON_CFLAGS) | 
|  | 232 | append_list_if(COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG -fvisibility=hidden SANITIZER_COMMON_CFLAGS) | 
|  | 233 | append_list_if(COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG -fno-function-sections SANITIZER_COMMON_CFLAGS) | 
| Rafael Espindola | 0dfd240 | 2014-12-31 18:20:52 +0000 | [diff] [blame] | 234 | append_list_if(COMPILER_RT_HAS_FNO_LTO_FLAG -fno-lto SANITIZER_COMMON_CFLAGS) | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 235 |  | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 236 | if(MSVC) | 
| Timur Iskhodzhanov | de1718d | 2014-08-12 09:44:56 +0000 | [diff] [blame] | 237 | # Replace the /MD[d] flags with /MT. | 
|  | 238 | # FIXME: In fact, sanitizers should support both /MT and /MD, see PR20214. | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 239 | if(COMPILER_RT_HAS_MT_FLAG) | 
| Aaron Ballman | 7c7be2f | 2014-10-23 20:24:00 +0000 | [diff] [blame] | 240 | foreach(flag_var | 
|  | 241 | CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE | 
|  | 242 | CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO) | 
|  | 243 | if(${flag_var} MATCHES "/MD") | 
|  | 244 | string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | 
|  | 245 | elseif(${flag_var} MATCHES "/MDd") | 
|  | 246 | string(REGEX REPLACE "/MDd" "/MT" ${flag_var} "${${flag_var}}") | 
|  | 247 | endif() | 
|  | 248 | endforeach() | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 249 | endif() | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 250 | append_list_if(COMPILER_RT_HAS_Oy_FLAG /Oy- SANITIZER_COMMON_CFLAGS) | 
|  | 251 | append_list_if(COMPILER_RT_HAS_GS_FLAG /GS- SANITIZER_COMMON_CFLAGS) | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 252 | endif() | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 253 |  | 
| Alexey Samsonov | ea04032 | 2015-01-06 20:25:34 +0000 | [diff] [blame^] | 254 | append_list_if(COMPILER_RT_DEBUG -DSANITIZER_DEBUG=1 SANITIZER_COMMON_CFLAGS) | 
| Alexey Samsonov | df3aeb8 | 2015-01-03 04:29:12 +0000 | [diff] [blame] | 255 |  | 
| Alexey Samsonov | cbc6852 | 2014-03-13 13:37:07 +0000 | [diff] [blame] | 256 | # Build with optimization, unless we're in debug mode. If we're using MSVC, | 
|  | 257 | # always respect the optimization flags set by CMAKE_BUILD_TYPE instead. | 
|  | 258 | if(NOT COMPILER_RT_DEBUG AND NOT MSVC) | 
|  | 259 | list(APPEND SANITIZER_COMMON_CFLAGS -O3) | 
| Hans Wennborg | 67c6e50 | 2013-08-27 01:24:01 +0000 | [diff] [blame] | 260 | endif() | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 261 |  | 
| Alexey Samsonov | df3aeb8 | 2015-01-03 04:29:12 +0000 | [diff] [blame] | 262 | # Determine if we should restrict stack frame sizes. | 
|  | 263 | # Stack frames on PowerPC and in debug biuld can be much larger than | 
|  | 264 | # anticipated. | 
|  | 265 | # FIXME: Fix all sanitizers and add -Wframe-larger-than to | 
|  | 266 | # SANITIZER_COMMON_FLAGS | 
|  | 267 | if(COMPILER_RT_HAS_WFRAME_LARGER_THAN_FLAG AND NOT COMPILER_RT_DEBUG | 
|  | 268 | AND NOT ${LLVM_NATIVE_ARCH} STREQUAL "PowerPC") | 
|  | 269 | set(SANITIZER_LIMIT_FRAME_SIZE TRUE) | 
|  | 270 | else() | 
|  | 271 | set(SANITIZER_LIMIT_FRAME_SIZE FALSE) | 
|  | 272 | endif() | 
|  | 273 |  | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 274 | # Build sanitizer runtimes with debug info. | 
| Kuba Brecka | 5238deb | 2014-12-23 01:52:53 +0000 | [diff] [blame] | 275 | if(COMPILER_RT_HAS_GLINE_TABLES_ONLY_FLAG AND NOT COMPILER_RT_DEBUG) | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 276 | list(APPEND SANITIZER_COMMON_CFLAGS -gline-tables-only) | 
|  | 277 | elseif(COMPILER_RT_HAS_G_FLAG) | 
|  | 278 | list(APPEND SANITIZER_COMMON_CFLAGS -g) | 
|  | 279 | elseif(COMPILER_RT_HAS_Zi_FLAG) | 
|  | 280 | list(APPEND SANITIZER_COMMON_CFLAGS /Zi) | 
| Alexey Samsonov | 75fb677 | 2012-11-08 14:49:28 +0000 | [diff] [blame] | 281 | endif() | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 282 |  | 
|  | 283 | # Turn off several warnings. | 
| Alexey Samsonov | 829da45 | 2014-11-13 21:19:53 +0000 | [diff] [blame] | 284 | append_list_if(COMPILER_RT_HAS_WGNU_FLAG -Wno-gnu SANITIZER_COMMON_CFLAGS) | 
|  | 285 | append_list_if(COMPILER_RT_HAS_WVARIADIC_MACROS_FLAG -Wno-variadic-macros SANITIZER_COMMON_CFLAGS) | 
|  | 286 | append_list_if(COMPILER_RT_HAS_WC99_EXTENSIONS_FLAG -Wno-c99-extensions SANITIZER_COMMON_CFLAGS) | 
|  | 287 | append_list_if(COMPILER_RT_HAS_WNON_VIRTUAL_DTOR_FLAG -Wno-non-virtual-dtor SANITIZER_COMMON_CFLAGS) | 
| Aaron Ballman | 1d1f232 | 2014-10-23 20:39:58 +0000 | [diff] [blame] | 288 | append_list_if(COMPILER_RT_HAS_WD4146_FLAG /wd4146 SANITIZER_COMMON_CFLAGS) | 
|  | 289 | append_list_if(COMPILER_RT_HAS_WD4291_FLAG /wd4291 SANITIZER_COMMON_CFLAGS) | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 290 | append_list_if(COMPILER_RT_HAS_WD4391_FLAG /wd4391 SANITIZER_COMMON_CFLAGS) | 
|  | 291 | append_list_if(COMPILER_RT_HAS_WD4722_FLAG /wd4722 SANITIZER_COMMON_CFLAGS) | 
| Aaron Ballman | 1d1f232 | 2014-10-23 20:39:58 +0000 | [diff] [blame] | 292 | append_list_if(COMPILER_RT_HAS_WD4800_FLAG /wd4800 SANITIZER_COMMON_CFLAGS) | 
| Alexey Samsonov | d83ccd0 | 2012-09-05 09:00:03 +0000 | [diff] [blame] | 293 | if(APPLE) | 
| Alexander Potapenko | 49034e3 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 294 | # Obtain the iOS Simulator SDK path from xcodebuild. | 
|  | 295 | execute_process( | 
|  | 296 | COMMAND xcodebuild -version -sdk iphonesimulator Path | 
|  | 297 | OUTPUT_VARIABLE IOSSIM_SDK_DIR | 
|  | 298 | OUTPUT_STRIP_TRAILING_WHITESPACE | 
|  | 299 | ) | 
| Alexey Samsonov | 1dbe6e0 | 2014-02-18 12:01:24 +0000 | [diff] [blame] | 300 | string(REGEX MATCH "-mmacosx-version-min=" | 
|  | 301 | MACOSX_VERSION_MIN_FLAG "${CMAKE_CXX_FLAGS}") | 
| Alexander Potapenko | 49034e3 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 302 | set(SANITIZER_COMMON_SUPPORTED_DARWIN_OS osx) | 
| Alexey Samsonov | 1dbe6e0 | 2014-02-18 12:01:24 +0000 | [diff] [blame] | 303 | if (IOSSIM_SDK_DIR AND NOT MACOSX_VERSION_MIN_FLAG) | 
| Alexander Potapenko | 49034e3 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 304 | list(APPEND SANITIZER_COMMON_SUPPORTED_DARWIN_OS iossim) | 
|  | 305 | endif() | 
|  | 306 |  | 
| Alexey Samsonov | 76c8755 | 2014-10-15 18:23:57 +0000 | [diff] [blame] | 307 | set(SANITIZER_MIN_OSX_VERSION 10.7) | 
| Hans Wennborg | a03fead | 2014-08-12 20:03:33 +0000 | [diff] [blame] | 308 | set(CMAKE_OSX_DEPLOYMENT_TARGET "") # We're setting the flag manually below. | 
| Alexander Potapenko | 49034e3 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 309 | set(DARWIN_osx_CFLAGS -mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION}) | 
| Alexey Samsonov | 76c8755 | 2014-10-15 18:23:57 +0000 | [diff] [blame] | 310 | set(DARWIN_iossim_CFLAGS | 
| Alexander Potapenko | 49034e3 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 311 | -mios-simulator-version-min=7.0 -isysroot ${IOSSIM_SDK_DIR}) | 
|  | 312 | set(DARWIN_osx_LINKFLAGS) | 
|  | 313 | set(DARWIN_iossim_LINKFLAGS | 
|  | 314 | -Wl,-ios_simulator_version_min,7.0.0 | 
|  | 315 | -mios-simulator-version-min=7.0 | 
| Alexander Potapenko | 2b00289 | 2013-11-19 14:58:42 +0000 | [diff] [blame] | 316 | -isysroot ${IOSSIM_SDK_DIR}) | 
| Alexey Samsonov | d83ccd0 | 2012-09-05 09:00:03 +0000 | [diff] [blame] | 317 | endif() | 
| Chandler Carruth | c1c9d58 | 2012-08-29 00:13:11 +0000 | [diff] [blame] | 318 |  | 
| Alexey Samsonov | 9f3938e | 2013-04-11 15:49:52 +0000 | [diff] [blame] | 319 | add_subdirectory(include) | 
|  | 320 |  | 
| Alexey Samsonov | 8434e60 | 2014-02-14 13:02:58 +0000 | [diff] [blame] | 321 | set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/projects/libcxx) | 
|  | 322 | if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/) | 
|  | 323 | set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE) | 
|  | 324 | else() | 
|  | 325 | set(COMPILER_RT_HAS_LIBCXX_SOURCES FALSE) | 
|  | 326 | endif() | 
|  | 327 |  | 
| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 328 | add_subdirectory(lib) | 
|  | 329 |  | 
| Alexey Samsonov | cd8535a | 2014-02-19 11:18:47 +0000 | [diff] [blame] | 330 | if(COMPILER_RT_INCLUDE_TESTS) | 
| Alexey Samsonov | 81a2b46 | 2014-02-14 11:00:07 +0000 | [diff] [blame] | 331 | add_subdirectory(unittests) | 
| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 332 | endif() | 
| Alexey Samsonov | 9f20d67 | 2014-02-14 14:06:10 +0000 | [diff] [blame] | 333 | add_subdirectory(test) |