| 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) | 
| Douglas Katzman | c4ffd48 | 2015-07-28 16:52:42 +0000 | [diff] [blame] | 12 | project(CompilerRT C CXX ASM) | 
| 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() | 
| Chris Bieneman | ba325ea | 2015-08-11 23:31:43 +0000 | [diff] [blame] | 25 | # Version 2.8.12.1 is required to build with Visual Studio 2013. | 
| Hans Wennborg | a97442f | 2014-02-11 21:46:19 +0000 | [diff] [blame] | 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) | 
| Chris Bieneman | 956ecea | 2016-02-24 22:29:42 +0000 | [diff] [blame] | 34 | if(APPLE) | 
|  | 35 | set(CMAKE_MACOSX_RPATH On) | 
| Chris Bieneman | e8c7d77 | 2016-02-24 22:42:47 +0000 | [diff] [blame] | 36 | endif() | 
| NAKAMURA Takumi | 9cd9ad6 | 2014-02-26 06:45:11 +0000 | [diff] [blame] | 37 | else() | 
|  | 38 | # Use ${cmake_2_8_12_KEYWORD} intead of KEYWORD in target_link_libraries(). | 
|  | 39 | set(cmake_2_8_12_INTERFACE INTERFACE) | 
|  | 40 | set(cmake_2_8_12_PRIVATE PRIVATE) | 
|  | 41 | if(POLICY CMP0022) | 
|  | 42 | cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required | 
|  | 43 | endif() | 
| Chris Bieneman | 956ecea | 2016-02-24 22:29:42 +0000 | [diff] [blame] | 44 | if(POLICY CMP0042) | 
|  | 45 | cmake_policy(SET CMP0042 NEW) # automatic when 2.8.12 is required | 
|  | 46 | endif() | 
| NAKAMURA Takumi | 9cd9ad6 | 2014-02-26 06:45:11 +0000 | [diff] [blame] | 47 | endif() | 
|  | 48 |  | 
| Chris Bieneman | c49e5e3 | 2016-05-09 21:45:52 +0000 | [diff] [blame^] | 49 | # Add path for custom compiler-rt modules. | 
|  | 50 | list(INSERT CMAKE_MODULE_PATH 0 | 
|  | 51 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake" | 
|  | 52 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules" | 
|  | 53 | ) | 
|  | 54 |  | 
|  | 55 | include(base-config-ix) | 
| Alexey Samsonov | 20abdf6 | 2013-10-01 12:52:15 +0000 | [diff] [blame] | 56 |  | 
| Chris Bieneman | 679ab85 | 2015-09-14 19:59:24 +0000 | [diff] [blame] | 57 | option(COMPILER_RT_BUILD_BUILTINS "Build builtins" ON) | 
|  | 58 | mark_as_advanced(COMPILER_RT_BUILD_BUILTINS) | 
|  | 59 | option(COMPILER_RT_BUILD_SANITIZERS "Build sanitizers" ON) | 
|  | 60 | mark_as_advanced(COMPILER_RT_BUILD_SANITIZERS) | 
|  | 61 |  | 
| Chris Bieneman | c49e5e3 | 2016-05-09 21:45:52 +0000 | [diff] [blame^] | 62 | if (COMPILER_RT_STANDALONE_BUILD) | 
| Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 63 | if (NOT LLVM_CONFIG_PATH) | 
| Alexey Samsonov | 1464b59 | 2014-03-05 09:21:49 +0000 | [diff] [blame] | 64 | find_program(LLVM_CONFIG_PATH "llvm-config" | 
|  | 65 | DOC "Path to llvm-config binary") | 
| Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 66 | if (NOT LLVM_CONFIG_PATH) | 
|  | 67 | message(FATAL_ERROR "llvm-config not found: specify LLVM_CONFIG_PATH") | 
|  | 68 | endif() | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 69 | endif() | 
| Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 70 | execute_process( | 
|  | 71 | COMMAND ${LLVM_CONFIG_PATH} "--obj-root" "--bindir" "--libdir" "--src-root" | 
|  | 72 | RESULT_VARIABLE HAD_ERROR | 
|  | 73 | OUTPUT_VARIABLE CONFIG_OUTPUT) | 
|  | 74 | if (HAD_ERROR) | 
|  | 75 | message(FATAL_ERROR "llvm-config failed with status ${HAD_ERROR}") | 
|  | 76 | endif() | 
|  | 77 | string(REGEX REPLACE "[ \t]*[\r\n]+[ \t]*" ";" CONFIG_OUTPUT ${CONFIG_OUTPUT}) | 
|  | 78 | list(GET CONFIG_OUTPUT 0 LLVM_BINARY_DIR) | 
|  | 79 | list(GET CONFIG_OUTPUT 1 LLVM_TOOLS_BINARY_DIR) | 
|  | 80 | list(GET CONFIG_OUTPUT 2 LLVM_LIBRARY_DIR) | 
|  | 81 | list(GET CONFIG_OUTPUT 3 LLVM_MAIN_SRC_DIR) | 
|  | 82 |  | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 83 | # Make use of LLVM CMake modules. | 
| Alexey Samsonov | f97f07b | 2014-03-13 11:55:27 +0000 | [diff] [blame] | 84 | file(TO_CMAKE_PATH ${LLVM_BINARY_DIR} LLVM_BINARY_DIR_CMAKE_STYLE) | 
| Niels Ole Salscheider | c656363 | 2016-02-04 23:15:29 +0000 | [diff] [blame] | 85 | set(LLVM_CMAKE_PATH "${LLVM_BINARY_DIR_CMAKE_STYLE}/lib${LLVM_LIBDIR_SUFFIX}/cmake/llvm") | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 86 | list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_PATH}") | 
|  | 87 | # Get some LLVM variables from LLVMConfig. | 
|  | 88 | include("${LLVM_CMAKE_PATH}/LLVMConfig.cmake") | 
|  | 89 |  | 
| Chandler Carruth | 11fb7a4 | 2014-12-29 12:26:30 +0000 | [diff] [blame] | 90 | set(LLVM_LIBRARY_OUTPUT_INTDIR | 
|  | 91 | ${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX}) | 
| Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 92 |  | 
|  | 93 | # Find Python interpreter. | 
|  | 94 | set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5) | 
|  | 95 | include(FindPythonInterp) | 
|  | 96 | if(NOT PYTHONINTERP_FOUND) | 
|  | 97 | message(FATAL_ERROR " | 
|  | 98 | Unable to find Python interpreter required testing. Please install Python | 
|  | 99 | or specify the PYTHON_EXECUTABLE CMake variable.") | 
|  | 100 | endif() | 
|  | 101 |  | 
|  | 102 | # Define default arguments to lit. | 
|  | 103 | set(LIT_ARGS_DEFAULT "-sv") | 
|  | 104 | if (MSVC OR XCODE) | 
|  | 105 | set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar") | 
|  | 106 | endif() | 
|  | 107 | 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] | 108 | endif() | 
|  | 109 |  | 
| Alexey Samsonov | 0d0200d | 2015-09-08 22:48:35 +0000 | [diff] [blame] | 110 | set(COMPILER_RT_DEFAULT_TARGET_TRIPLE ${TARGET_TRIPLE} CACHE STRING | 
|  | 111 | "Default triple for which compiler-rt runtimes will be built.") | 
|  | 112 | if(DEFINED COMPILER_RT_TEST_TARGET_TRIPLE) | 
|  | 113 | # Backwards compatibility: this variable used to be called | 
|  | 114 | # COMPILER_RT_TEST_TARGET_TRIPLE. | 
|  | 115 | set(COMPILER_RT_DEFAULT_TARGET_TRIPLE ${COMPILER_RT_TEST_TARGET_TRIPLE}) | 
| Alexey Samsonov | 398a301 | 2015-07-24 22:01:07 +0000 | [diff] [blame] | 116 | endif() | 
| Greg Fitzgerald | 0f7f731 | 2014-06-02 23:11:24 +0000 | [diff] [blame] | 117 |  | 
| Alexey Samsonov | 0d0200d | 2015-09-08 22:48:35 +0000 | [diff] [blame] | 118 | string(REPLACE "-" ";" TARGET_TRIPLE_LIST ${COMPILER_RT_DEFAULT_TARGET_TRIPLE}) | 
|  | 119 | list(GET TARGET_TRIPLE_LIST 0 COMPILER_RT_DEFAULT_TARGET_ARCH) | 
|  | 120 | list(GET TARGET_TRIPLE_LIST 1 COMPILER_RT_DEFAULT_TARGET_OS) | 
|  | 121 | list(GET TARGET_TRIPLE_LIST 2 COMPILER_RT_DEFAULT_TARGET_ABI) | 
|  | 122 | # Determine if test target triple is specified explicitly, and doesn't match the | 
|  | 123 | # default. | 
|  | 124 | if(NOT COMPILER_RT_DEFAULT_TARGET_TRIPLE STREQUAL TARGET_TRIPLE) | 
|  | 125 | set(COMPILER_RT_HAS_EXPLICIT_DEFAULT_TARGET_TRIPLE TRUE) | 
|  | 126 | else() | 
|  | 127 | set(COMPILER_RT_HAS_EXPLICIT_DEFAULT_TARGET_TRIPLE FALSE) | 
|  | 128 | endif() | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 129 | include(CompilerRTUtils) | 
| Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 130 |  | 
|  | 131 | set(COMPILER_RT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) | 
| Alexey Samsonov | 6a65b18 | 2013-06-06 12:35:48 +0000 | [diff] [blame] | 132 | set(COMPILER_RT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) | 
| Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 133 |  | 
| Timur Iskhodzhanov | b9bd76b | 2014-05-13 14:25:49 +0000 | [diff] [blame] | 134 | # We support running instrumented tests when we're not cross compiling | 
|  | 135 | # and target a UNIX-like system or Windows. | 
|  | 136 | # We can run tests on Android even when we are cross-compiling. | 
| Reid Kleckner | fbfed86 | 2015-07-17 16:23:05 +0000 | [diff] [blame] | 137 | if(("${CMAKE_HOST_SYSTEM}" STREQUAL "${CMAKE_SYSTEM}" AND (UNIX OR WIN32)) OR ANDROID | 
| Greg Fitzgerald | 07c88a1 | 2014-05-14 00:36:15 +0000 | [diff] [blame] | 138 | OR COMPILER_RT_EMULATOR) | 
| Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 139 | option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" ON) | 
| Alexey Samsonov | c20f5d2 | 2012-12-27 13:19:23 +0000 | [diff] [blame] | 140 | else() | 
| Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 141 | option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" OFF) | 
| Alexey Samsonov | c20f5d2 | 2012-12-27 13:19:23 +0000 | [diff] [blame] | 142 | endif() | 
| Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 143 |  | 
| Peter Collingbourne | cbdea32 | 2013-10-25 23:03:34 +0000 | [diff] [blame] | 144 | option(COMPILER_RT_DEBUG "Build runtimes with full debug info" OFF) | 
| Chris Bieneman | 69a372d | 2015-12-03 20:08:22 +0000 | [diff] [blame] | 145 | option(COMPILER_RT_EXTERNALIZE_DEBUGINFO | 
|  | 146 | "Generate dSYM files and strip executables and libraries (Darwin Only)" OFF) | 
| Peter Collingbourne | cbdea32 | 2013-10-25 23:03:34 +0000 | [diff] [blame] | 147 | # COMPILER_RT_DEBUG_PYBOOL is used by lit.common.configured.in. | 
|  | 148 | pythonize_bool(COMPILER_RT_DEBUG) | 
|  | 149 |  | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 150 | #================================ | 
|  | 151 | # Setup Compiler Flags | 
|  | 152 | #================================ | 
| Saleem Abdulrasool | a7452e4 | 2015-01-14 15:55:17 +0000 | [diff] [blame] | 153 |  | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 154 | include(config-ix) | 
|  | 155 |  | 
| Alexey Samsonov | fe7e28c | 2014-03-13 11:31:10 +0000 | [diff] [blame] | 156 | if(MSVC) | 
|  | 157 | append_string_if(COMPILER_RT_HAS_W3_FLAG /W3 CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
|  | 158 | else() | 
|  | 159 | append_string_if(COMPILER_RT_HAS_WALL_FLAG -Wall CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
|  | 160 | endif() | 
| Alexey Samsonov | 2f27f0b | 2014-02-24 11:22:39 +0000 | [diff] [blame] | 161 | if(COMPILER_RT_ENABLE_WERROR) | 
| Alexey Samsonov | fe7e28c | 2014-03-13 11:31:10 +0000 | [diff] [blame] | 162 | append_string_if(COMPILER_RT_HAS_WERROR_FLAG -Werror CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
|  | 163 | 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] | 164 | endif() | 
|  | 165 |  | 
| Alexey Samsonov | bcce197 | 2014-03-18 12:49:22 +0000 | [diff] [blame] | 166 | append_string_if(COMPILER_RT_HAS_STD_CXX11_FLAG -std=c++11 CMAKE_CXX_FLAGS) | 
|  | 167 |  | 
| Reid Kleckner | 0140ce4 | 2014-02-26 21:54:39 +0000 | [diff] [blame] | 168 | # 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] | 169 | if(NOT COMPILER_RT_HAS_FUNC_SYMBOL) | 
| Alexey Samsonov | 8c4c097 | 2014-02-27 07:03:32 +0000 | [diff] [blame] | 170 | add_definitions(-D__func__=__FUNCTION__) | 
| Reid Kleckner | 0140ce4 | 2014-02-26 21:54:39 +0000 | [diff] [blame] | 171 | endif() | 
|  | 172 |  | 
| Chandler Carruth | c1c9d58 | 2012-08-29 00:13:11 +0000 | [diff] [blame] | 173 | # Provide some common commmandline flags for Sanitizer runtimes. | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 174 | append_list_if(COMPILER_RT_HAS_FPIC_FLAG -fPIC SANITIZER_COMMON_CFLAGS) | 
|  | 175 | append_list_if(COMPILER_RT_HAS_FNO_BUILTIN_FLAG -fno-builtin SANITIZER_COMMON_CFLAGS) | 
|  | 176 | append_list_if(COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG -fno-exceptions SANITIZER_COMMON_CFLAGS) | 
|  | 177 | append_list_if(COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG -fomit-frame-pointer SANITIZER_COMMON_CFLAGS) | 
|  | 178 | append_list_if(COMPILER_RT_HAS_FUNWIND_TABLES_FLAG -funwind-tables SANITIZER_COMMON_CFLAGS) | 
|  | 179 | append_list_if(COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG -fno-stack-protector SANITIZER_COMMON_CFLAGS) | 
| Peter Collingbourne | b64d0b1 | 2015-06-15 21:08:47 +0000 | [diff] [blame] | 180 | append_list_if(COMPILER_RT_HAS_FNO_SANITIZE_SAFE_STACK_FLAG -fno-sanitize=safe-stack SANITIZER_COMMON_CFLAGS) | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 181 | append_list_if(COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG -fvisibility=hidden SANITIZER_COMMON_CFLAGS) | 
| Chris Bieneman | 9586a38 | 2015-11-30 19:16:42 +0000 | [diff] [blame] | 182 | append_list_if(COMPILER_RT_HAS_FVISIBILITY_INLINES_HIDDEN_FLAG -fvisibility-inlines-hidden SANITIZER_COMMON_CFLAGS) | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 183 | append_list_if(COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG -fno-function-sections SANITIZER_COMMON_CFLAGS) | 
| Evgeniy Stepanov | 8c9a070 | 2015-01-15 16:31:22 +0000 | [diff] [blame] | 184 | 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] | 185 |  | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 186 | if(MSVC) | 
| Peter Collingbourne | 702548d | 2015-07-08 22:10:34 +0000 | [diff] [blame] | 187 | # Replace the /M[DT][d] flags with /MT, and strip any definitions of _DEBUG, | 
|  | 188 | # which cause definition mismatches at link time. | 
| Timur Iskhodzhanov | de1718d | 2014-08-12 09:44:56 +0000 | [diff] [blame] | 189 | # FIXME: In fact, sanitizers should support both /MT and /MD, see PR20214. | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 190 | if(COMPILER_RT_HAS_MT_FLAG) | 
| Aaron Ballman | 7c7be2f | 2014-10-23 20:24:00 +0000 | [diff] [blame] | 191 | foreach(flag_var | 
| Andrey Turetskiy | bc0122b | 2016-02-20 12:56:04 +0000 | [diff] [blame] | 192 | CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE | 
|  | 193 | CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO | 
| Aaron Ballman | 7c7be2f | 2014-10-23 20:24:00 +0000 | [diff] [blame] | 194 | CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE | 
|  | 195 | CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO) | 
| Peter Collingbourne | 702548d | 2015-07-08 22:10:34 +0000 | [diff] [blame] | 196 | string(REGEX REPLACE "/M[DT]d" "/MT" ${flag_var} "${${flag_var}}") | 
|  | 197 | string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | 
|  | 198 | string(REGEX REPLACE "/D_DEBUG" "" ${flag_var} "${${flag_var}}") | 
| Aaron Ballman | 7c7be2f | 2014-10-23 20:24:00 +0000 | [diff] [blame] | 199 | endforeach() | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 200 | endif() | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 201 | append_list_if(COMPILER_RT_HAS_Oy_FLAG /Oy- SANITIZER_COMMON_CFLAGS) | 
|  | 202 | append_list_if(COMPILER_RT_HAS_GS_FLAG /GS- SANITIZER_COMMON_CFLAGS) | 
| Reid Kleckner | 21aca48 | 2016-03-21 20:08:59 +0000 | [diff] [blame] | 203 | # VS 2015 (version 1900) added support for thread safe static initialization. | 
|  | 204 | # However, ASan interceptors run before CRT initialization, which causes the | 
|  | 205 | # new thread safe code to crash. Disable this feature for now. | 
|  | 206 | if (MSVC_VERSION GREATER 1899) | 
|  | 207 | list(APPEND SANITIZER_COMMON_CFLAGS /Zc:threadSafeInit-) | 
|  | 208 | endif() | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 209 | endif() | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 210 |  | 
| Alexey Samsonov | ea04032 | 2015-01-06 20:25:34 +0000 | [diff] [blame] | 211 | append_list_if(COMPILER_RT_DEBUG -DSANITIZER_DEBUG=1 SANITIZER_COMMON_CFLAGS) | 
| Alexey Samsonov | df3aeb8 | 2015-01-03 04:29:12 +0000 | [diff] [blame] | 212 |  | 
| Alexey Samsonov | cbc6852 | 2014-03-13 13:37:07 +0000 | [diff] [blame] | 213 | # Build with optimization, unless we're in debug mode. If we're using MSVC, | 
|  | 214 | # always respect the optimization flags set by CMAKE_BUILD_TYPE instead. | 
|  | 215 | if(NOT COMPILER_RT_DEBUG AND NOT MSVC) | 
|  | 216 | list(APPEND SANITIZER_COMMON_CFLAGS -O3) | 
| Hans Wennborg | 67c6e50 | 2013-08-27 01:24:01 +0000 | [diff] [blame] | 217 | endif() | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 218 |  | 
| Alexey Samsonov | df3aeb8 | 2015-01-03 04:29:12 +0000 | [diff] [blame] | 219 | # Determine if we should restrict stack frame sizes. | 
| Dmitry Vyukov | 4bf0894 | 2015-04-10 09:45:22 +0000 | [diff] [blame] | 220 | # Stack frames on PowerPC and Mips and in debug biuld can be much larger than | 
| Alexey Samsonov | df3aeb8 | 2015-01-03 04:29:12 +0000 | [diff] [blame] | 221 | # anticipated. | 
|  | 222 | # FIXME: Fix all sanitizers and add -Wframe-larger-than to | 
|  | 223 | # SANITIZER_COMMON_FLAGS | 
|  | 224 | if(COMPILER_RT_HAS_WFRAME_LARGER_THAN_FLAG AND NOT COMPILER_RT_DEBUG | 
| Alexey Samsonov | 63eaeca | 2015-09-08 23:13:47 +0000 | [diff] [blame] | 225 | AND NOT ${COMPILER_RT_DEFAULT_TARGET_ARCH} MATCHES "powerpc|mips") | 
| Alexey Samsonov | df3aeb8 | 2015-01-03 04:29:12 +0000 | [diff] [blame] | 226 | set(SANITIZER_LIMIT_FRAME_SIZE TRUE) | 
|  | 227 | else() | 
|  | 228 | set(SANITIZER_LIMIT_FRAME_SIZE FALSE) | 
|  | 229 | endif() | 
|  | 230 |  | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 231 | # Build sanitizer runtimes with debug info. | 
| Kuba Brecka | 5238deb | 2014-12-23 01:52:53 +0000 | [diff] [blame] | 232 | 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] | 233 | list(APPEND SANITIZER_COMMON_CFLAGS -gline-tables-only) | 
|  | 234 | elseif(COMPILER_RT_HAS_G_FLAG) | 
|  | 235 | list(APPEND SANITIZER_COMMON_CFLAGS -g) | 
|  | 236 | elseif(COMPILER_RT_HAS_Zi_FLAG) | 
|  | 237 | list(APPEND SANITIZER_COMMON_CFLAGS /Zi) | 
| Alexey Samsonov | 75fb677 | 2012-11-08 14:49:28 +0000 | [diff] [blame] | 238 | endif() | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 239 |  | 
|  | 240 | # Turn off several warnings. | 
| Alexey Samsonov | 829da45 | 2014-11-13 21:19:53 +0000 | [diff] [blame] | 241 | append_list_if(COMPILER_RT_HAS_WGNU_FLAG -Wno-gnu SANITIZER_COMMON_CFLAGS) | 
|  | 242 | append_list_if(COMPILER_RT_HAS_WVARIADIC_MACROS_FLAG -Wno-variadic-macros SANITIZER_COMMON_CFLAGS) | 
|  | 243 | append_list_if(COMPILER_RT_HAS_WC99_EXTENSIONS_FLAG -Wno-c99-extensions SANITIZER_COMMON_CFLAGS) | 
|  | 244 | 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] | 245 | append_list_if(COMPILER_RT_HAS_WD4146_FLAG /wd4146 SANITIZER_COMMON_CFLAGS) | 
|  | 246 | append_list_if(COMPILER_RT_HAS_WD4291_FLAG /wd4291 SANITIZER_COMMON_CFLAGS) | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 247 | append_list_if(COMPILER_RT_HAS_WD4391_FLAG /wd4391 SANITIZER_COMMON_CFLAGS) | 
|  | 248 | append_list_if(COMPILER_RT_HAS_WD4722_FLAG /wd4722 SANITIZER_COMMON_CFLAGS) | 
| Aaron Ballman | 1d1f232 | 2014-10-23 20:39:58 +0000 | [diff] [blame] | 249 | append_list_if(COMPILER_RT_HAS_WD4800_FLAG /wd4800 SANITIZER_COMMON_CFLAGS) | 
| Chandler Carruth | c1c9d58 | 2012-08-29 00:13:11 +0000 | [diff] [blame] | 250 |  | 
| Alexey Samsonov | 3fa03e3 | 2015-06-25 00:57:42 +0000 | [diff] [blame] | 251 | if(APPLE AND SANITIZER_MIN_OSX_VERSION VERSION_LESS "10.9") | 
|  | 252 | # Mac OS X prior to 10.9 had problems with exporting symbols from | 
|  | 253 | # libc++/libc++abi. | 
|  | 254 | set(SANITIZER_CAN_USE_CXXABI FALSE) | 
| Reid Kleckner | b3e847e | 2016-02-01 19:13:28 +0000 | [diff] [blame] | 255 | elseif(MSVC) | 
|  | 256 | set(SANITIZER_CAN_USE_CXXABI FALSE) | 
| Alexey Samsonov | 3fa03e3 | 2015-06-25 00:57:42 +0000 | [diff] [blame] | 257 | else() | 
|  | 258 | set(SANITIZER_CAN_USE_CXXABI TRUE) | 
|  | 259 | endif() | 
|  | 260 | pythonize_bool(SANITIZER_CAN_USE_CXXABI) | 
|  | 261 |  | 
| Alexey Samsonov | 9f3938e | 2013-04-11 15:49:52 +0000 | [diff] [blame] | 262 | add_subdirectory(include) | 
|  | 263 |  | 
| Reid Kleckner | b509318 | 2015-08-11 17:22:06 +0000 | [diff] [blame] | 264 | set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/projects/libcxx) | 
| Alexey Samsonov | 8434e60 | 2014-02-14 13:02:58 +0000 | [diff] [blame] | 265 | if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/) | 
|  | 266 | set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE) | 
|  | 267 | else() | 
|  | 268 | set(COMPILER_RT_HAS_LIBCXX_SOURCES FALSE) | 
|  | 269 | endif() | 
|  | 270 |  | 
| Reid Kleckner | c1cd8dd | 2015-08-11 18:43:13 +0000 | [diff] [blame] | 271 | set(COMPILER_RT_LLD_PATH ${LLVM_MAIN_SRC_DIR}/tools/lld) | 
| Reid Kleckner | 45ebaf1 | 2015-08-11 00:33:07 +0000 | [diff] [blame] | 272 | if(EXISTS ${COMPILER_RT_LLD_PATH}/) | 
|  | 273 | set(COMPILER_RT_HAS_LLD_SOURCES TRUE) | 
|  | 274 | else() | 
|  | 275 | set(COMPILER_RT_HAS_LLD_SOURCES FALSE) | 
|  | 276 | endif() | 
|  | 277 | pythonize_bool(COMPILER_RT_HAS_LLD_SOURCES) | 
|  | 278 |  | 
| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 279 | add_subdirectory(lib) | 
|  | 280 |  | 
| Alexey Samsonov | cd8535a | 2014-02-19 11:18:47 +0000 | [diff] [blame] | 281 | if(COMPILER_RT_INCLUDE_TESTS) | 
| Alexey Samsonov | 81a2b46 | 2014-02-14 11:00:07 +0000 | [diff] [blame] | 282 | add_subdirectory(unittests) | 
| Chris Bieneman | fb92d9a | 2015-09-14 19:54:12 +0000 | [diff] [blame] | 283 | add_subdirectory(test) | 
| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 284 | endif() |