| 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 | 
| Jonas Hahnfeld | ddbab7d | 2016-08-19 06:46:00 +0000 | [diff] [blame] | 4 | # 'projects/compiler-rt' or 'runtimes/compiler-rt' inside of an LLVM tree. | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 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 |  | 
| Pirama Arumuga Nainar | 31b825d | 2017-06-16 21:14:45 +0000 | [diff] [blame] | 10 | cmake_minimum_required(VERSION 3.4.3) | 
|  | 11 |  | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 12 | # Check if compiler-rt is built as a standalone project. | 
| Jonas Hahnfeld | ddbab7d | 2016-08-19 06:46:00 +0000 | [diff] [blame] | 13 | if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR OR COMPILER_RT_STANDALONE_BUILD) | 
| Douglas Katzman | c4ffd48 | 2015-07-28 16:52:42 +0000 | [diff] [blame] | 14 | project(CompilerRT C CXX ASM) | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 15 | set(COMPILER_RT_STANDALONE_BUILD TRUE) | 
| Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 16 | endif() | 
|  | 17 |  | 
| Chris Bieneman | c49e5e3 | 2016-05-09 21:45:52 +0000 | [diff] [blame] | 18 | # Add path for custom compiler-rt modules. | 
|  | 19 | list(INSERT CMAKE_MODULE_PATH 0 | 
|  | 20 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake" | 
|  | 21 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules" | 
|  | 22 | ) | 
|  | 23 |  | 
| George Karpenkov | 50dd3fe | 2017-07-28 00:50:56 +0000 | [diff] [blame] | 24 | if(CMAKE_CONFIGURATION_TYPES) | 
|  | 25 | set(CMAKE_CFG_RESOLVED_INTDIR "${CMAKE_CFG_INTDIR}/") | 
|  | 26 | else() | 
|  | 27 | set(CMAKE_CFG_RESOLVED_INTDIR "") | 
|  | 28 | endif() | 
|  | 29 |  | 
| Chris Bieneman | c49e5e3 | 2016-05-09 21:45:52 +0000 | [diff] [blame] | 30 | include(base-config-ix) | 
| Jonas Hahnfeld | 9b2c3ab | 2016-08-02 05:51:05 +0000 | [diff] [blame] | 31 | include(CompilerRTUtils) | 
| Alexey Samsonov | 20abdf6 | 2013-10-01 12:52:15 +0000 | [diff] [blame] | 32 |  | 
| Chris Bieneman | 679ab85 | 2015-09-14 19:59:24 +0000 | [diff] [blame] | 33 | option(COMPILER_RT_BUILD_BUILTINS "Build builtins" ON) | 
|  | 34 | mark_as_advanced(COMPILER_RT_BUILD_BUILTINS) | 
|  | 35 | option(COMPILER_RT_BUILD_SANITIZERS "Build sanitizers" ON) | 
|  | 36 | mark_as_advanced(COMPILER_RT_BUILD_SANITIZERS) | 
| Dean Michael Berris | 6af0a6b | 2016-08-08 03:58:57 +0000 | [diff] [blame] | 37 | option(COMPILER_RT_BUILD_XRAY "Build xray" ON) | 
| Dean Michael Berris | 938c503 | 2016-07-21 07:39:55 +0000 | [diff] [blame] | 38 | mark_as_advanced(COMPILER_RT_BUILD_XRAY) | 
| Dean Michael Berris | 449fdf8 | 2017-08-03 00:58:45 +0000 | [diff] [blame^] | 39 | option(COMPILER_RT_BUILD_XRAY_NO_PREINIT "Build xray with no preinit patching" OFF) | 
|  | 40 | mark_as_advanced(COMPILER_RT_BUILD_XRAY_NO_PREINIT) | 
| Chris Bieneman | 679ab85 | 2015-09-14 19:59:24 +0000 | [diff] [blame] | 41 |  | 
| Catherine Moore | 61efa17 | 2017-05-10 15:34:25 +0000 | [diff] [blame] | 42 | set(COMPILER_RT_BAREMETAL_BUILD OFF CACHE BOOLEAN | 
|  | 43 | "Build for a bare-metal target.") | 
|  | 44 |  | 
| Chris Bieneman | c49e5e3 | 2016-05-09 21:45:52 +0000 | [diff] [blame] | 45 | if (COMPILER_RT_STANDALONE_BUILD) | 
| Jonas Hahnfeld | 9b2c3ab | 2016-08-02 05:51:05 +0000 | [diff] [blame] | 46 | load_llvm_config() | 
| Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 47 |  | 
|  | 48 | # Find Python interpreter. | 
|  | 49 | set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5) | 
|  | 50 | include(FindPythonInterp) | 
|  | 51 | if(NOT PYTHONINTERP_FOUND) | 
|  | 52 | message(FATAL_ERROR " | 
|  | 53 | Unable to find Python interpreter required testing. Please install Python | 
|  | 54 | or specify the PYTHON_EXECUTABLE CMake variable.") | 
|  | 55 | endif() | 
|  | 56 |  | 
|  | 57 | # Define default arguments to lit. | 
|  | 58 | set(LIT_ARGS_DEFAULT "-sv") | 
|  | 59 | if (MSVC OR XCODE) | 
|  | 60 | set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar") | 
|  | 61 | endif() | 
|  | 62 | 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] | 63 | endif() | 
|  | 64 |  | 
| Jonas Hahnfeld | 9b2c3ab | 2016-08-02 05:51:05 +0000 | [diff] [blame] | 65 | construct_compiler_rt_default_triple() | 
| Chris Bieneman | 990ff38 | 2016-06-27 22:52:05 +0000 | [diff] [blame] | 66 | if ("${COMPILER_RT_DEFAULT_TARGET_ABI}" STREQUAL "androideabi") | 
|  | 67 | set(ANDROID 1) | 
|  | 68 | endif() | 
| Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 69 |  | 
|  | 70 | set(COMPILER_RT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) | 
| Alexey Samsonov | 6a65b18 | 2013-06-06 12:35:48 +0000 | [diff] [blame] | 71 | set(COMPILER_RT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) | 
| Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 72 |  | 
| Timur Iskhodzhanov | b9bd76b | 2014-05-13 14:25:49 +0000 | [diff] [blame] | 73 | # We support running instrumented tests when we're not cross compiling | 
|  | 74 | # and target a UNIX-like system or Windows. | 
|  | 75 | # We can run tests on Android even when we are cross-compiling. | 
| Reid Kleckner | fbfed86 | 2015-07-17 16:23:05 +0000 | [diff] [blame] | 76 | 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] | 77 | OR COMPILER_RT_EMULATOR) | 
| Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 78 | option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" ON) | 
| Alexey Samsonov | c20f5d2 | 2012-12-27 13:19:23 +0000 | [diff] [blame] | 79 | else() | 
| Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 80 | option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" OFF) | 
| Alexey Samsonov | c20f5d2 | 2012-12-27 13:19:23 +0000 | [diff] [blame] | 81 | endif() | 
| Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 82 |  | 
| Peter Collingbourne | cbdea32 | 2013-10-25 23:03:34 +0000 | [diff] [blame] | 83 | option(COMPILER_RT_DEBUG "Build runtimes with full debug info" OFF) | 
| Chris Bieneman | 69a372d | 2015-12-03 20:08:22 +0000 | [diff] [blame] | 84 | option(COMPILER_RT_EXTERNALIZE_DEBUGINFO | 
|  | 85 | "Generate dSYM files and strip executables and libraries (Darwin Only)" OFF) | 
| Peter Collingbourne | cbdea32 | 2013-10-25 23:03:34 +0000 | [diff] [blame] | 86 | # COMPILER_RT_DEBUG_PYBOOL is used by lit.common.configured.in. | 
|  | 87 | pythonize_bool(COMPILER_RT_DEBUG) | 
|  | 88 |  | 
| Petr Hosek | 2bbb6ad | 2017-07-28 03:39:38 +0000 | [diff] [blame] | 89 | include(HandleCompilerRT) | 
| Vedant Kumar | cb7110b | 2016-10-06 16:45:40 +0000 | [diff] [blame] | 90 | include(config-ix) | 
|  | 91 |  | 
| Kuba Mracek | 5c2e3e2 | 2017-07-07 22:40:13 +0000 | [diff] [blame] | 92 | if(APPLE AND SANITIZER_MIN_OSX_VERSION AND SANITIZER_MIN_OSX_VERSION VERSION_LESS "10.9") | 
| Francis Ricci | 9cf5e4f | 2016-08-22 18:31:37 +0000 | [diff] [blame] | 93 | # Mac OS X prior to 10.9 had problems with exporting symbols from | 
|  | 94 | # libc++/libc++abi. | 
|  | 95 | set(use_cxxabi_default OFF) | 
|  | 96 | elseif(MSVC) | 
|  | 97 | set(use_cxxabi_default OFF) | 
|  | 98 | else() | 
|  | 99 | set(use_cxxabi_default ON) | 
|  | 100 | endif() | 
|  | 101 |  | 
|  | 102 | option(SANITIZER_CAN_USE_CXXABI "Sanitizers can use cxxabi" ${use_cxxabi_default}) | 
|  | 103 | pythonize_bool(SANITIZER_CAN_USE_CXXABI) | 
|  | 104 |  | 
| Petr Hosek | a7a9ca4 | 2017-07-28 03:39:39 +0000 | [diff] [blame] | 105 | set(SANITIZER_CXX_ABI "default" CACHE STRING | 
|  | 106 | "Specify C++ ABI library to use.") | 
|  | 107 | set(CXXABIS none default libcxxabi libstdc++) | 
|  | 108 | set_property(CACHE SANITIZER_CXX_ABI PROPERTY STRINGS ;${CXXABIS}) | 
|  | 109 |  | 
|  | 110 | if (SANITIZER_CXX_ABI STREQUAL "default") | 
|  | 111 | if (HAVE_LIBCXXABI AND COMPILER_RT_DEFAULT_TARGET_ONLY) | 
|  | 112 | set(SANITIZER_CXX_ABI_LIBNAME "libcxxabi") | 
|  | 113 | set(SANITIZER_CXX_ABI_INTREE 1) | 
|  | 114 | elseif (APPLE) | 
|  | 115 | set(SANITIZER_CXX_ABI_LIBNAME "libcxxabi") | 
|  | 116 | set(SANITIZER_CXX_ABI_SYSTEM 1) | 
|  | 117 | else() | 
|  | 118 | set(SANITIZER_CXX_ABI_LIBNAME "libstdc++") | 
|  | 119 | endif() | 
|  | 120 | elseif() | 
|  | 121 | set(SANITIZER_CXX_ABI_LIBNAME "${SANITIZER_CXX_ABI}") | 
|  | 122 | endif() | 
|  | 123 |  | 
|  | 124 | if (SANITIZER_CXX_ABI_LIBNAME STREQUAL "libcxxabi") | 
|  | 125 | if (SANITIZER_CXX_ABI_INTREE) | 
|  | 126 | if (TARGET unwind_shared OR HAVE_LIBUNWIND) | 
|  | 127 | list(APPEND SANITIZER_CXX_ABI_LIBRARY unwind_shared) | 
|  | 128 | endif() | 
|  | 129 | if (TARGET cxxabi_shared OR HAVE_LIBCXXABI) | 
|  | 130 | list(APPEND SANITIZER_CXX_ABI_LIBRARY cxxabi_shared) | 
|  | 131 | endif() | 
|  | 132 | else() | 
|  | 133 | list(APPEND SANITIZER_CXX_ABI_LIBRARY "c++abi") | 
|  | 134 | endif() | 
|  | 135 | elseif (SANITIZER_CXX_ABI_LIBNAME STREQUAL "libstdc++") | 
|  | 136 | append_list_if(COMPILER_RT_HAS_LIBSTDCXX stdc++ SANITIZER_CXX_ABI_LIBRARY) | 
|  | 137 | endif() | 
|  | 138 |  | 
| Petr Hosek | 2bbb6ad | 2017-07-28 03:39:38 +0000 | [diff] [blame] | 139 | option(SANITIZER_USE_COMPILER_RT "Use compiler-rt builtins instead of libgcc" OFF) | 
|  | 140 |  | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 141 | #================================ | 
|  | 142 | # Setup Compiler Flags | 
|  | 143 | #================================ | 
| Saleem Abdulrasool | a7452e4 | 2015-01-14 15:55:17 +0000 | [diff] [blame] | 144 |  | 
| Alexey Samsonov | fe7e28c | 2014-03-13 11:31:10 +0000 | [diff] [blame] | 145 | if(MSVC) | 
| Reid Kleckner | d0680ad | 2016-06-17 17:48:52 +0000 | [diff] [blame] | 146 | # Override any existing /W flags with /W4. This is what LLVM does.  Failing to | 
|  | 147 | # remove other /W[0-4] flags will result in a warning about overriding a | 
|  | 148 | # previous flag. | 
|  | 149 | if (COMPILER_RT_HAS_W4_FLAG) | 
|  | 150 | string(REGEX REPLACE " /W[0-4]" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") | 
|  | 151 | string(REGEX REPLACE " /W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") | 
|  | 152 | append_string_if(COMPILER_RT_HAS_W4_FLAG /W4 CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
|  | 153 | endif() | 
| Alexey Samsonov | fe7e28c | 2014-03-13 11:31:10 +0000 | [diff] [blame] | 154 | else() | 
|  | 155 | append_string_if(COMPILER_RT_HAS_WALL_FLAG -Wall CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
|  | 156 | endif() | 
| Alexey Samsonov | 2f27f0b | 2014-02-24 11:22:39 +0000 | [diff] [blame] | 157 | if(COMPILER_RT_ENABLE_WERROR) | 
| Alexey Samsonov | fe7e28c | 2014-03-13 11:31:10 +0000 | [diff] [blame] | 158 | append_string_if(COMPILER_RT_HAS_WERROR_FLAG -Werror CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
|  | 159 | 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] | 160 | endif() | 
|  | 161 |  | 
| Alexey Samsonov | bcce197 | 2014-03-18 12:49:22 +0000 | [diff] [blame] | 162 | append_string_if(COMPILER_RT_HAS_STD_CXX11_FLAG -std=c++11 CMAKE_CXX_FLAGS) | 
|  | 163 |  | 
| Reid Kleckner | 0140ce4 | 2014-02-26 21:54:39 +0000 | [diff] [blame] | 164 | # 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] | 165 | if(NOT COMPILER_RT_HAS_FUNC_SYMBOL) | 
| Alexey Samsonov | 8c4c097 | 2014-02-27 07:03:32 +0000 | [diff] [blame] | 166 | add_definitions(-D__func__=__FUNCTION__) | 
| Reid Kleckner | 0140ce4 | 2014-02-26 21:54:39 +0000 | [diff] [blame] | 167 | endif() | 
|  | 168 |  | 
| Chandler Carruth | c1c9d58 | 2012-08-29 00:13:11 +0000 | [diff] [blame] | 169 | # Provide some common commmandline flags for Sanitizer runtimes. | 
| Francis Ricci | 0b6f487 | 2016-09-08 15:57:22 +0000 | [diff] [blame] | 170 | if(NOT WIN32) | 
|  | 171 | append_list_if(COMPILER_RT_HAS_FPIC_FLAG -fPIC SANITIZER_COMMON_CFLAGS) | 
|  | 172 | endif() | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 173 | append_list_if(COMPILER_RT_HAS_FNO_BUILTIN_FLAG -fno-builtin SANITIZER_COMMON_CFLAGS) | 
|  | 174 | append_list_if(COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG -fno-exceptions SANITIZER_COMMON_CFLAGS) | 
| Kuba Mracek | 90caf89 | 2017-03-27 17:14:48 +0000 | [diff] [blame] | 175 | if(NOT COMPILER_RT_DEBUG AND NOT APPLE) | 
| Kuba Brecka | 83460cf | 2016-05-22 19:59:06 +0000 | [diff] [blame] | 176 | append_list_if(COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG -fomit-frame-pointer SANITIZER_COMMON_CFLAGS) | 
|  | 177 | endif() | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 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) | 
| Evgeniy Stepanov | 8c9a070 | 2015-01-15 16:31:22 +0000 | [diff] [blame] | 183 | 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] | 184 |  | 
| Kostya Kortchinsky | 2282ede | 2017-01-30 22:31:49 +0000 | [diff] [blame] | 185 | # The following is a workaround for powerpc64le. This is the only architecture | 
|  | 186 | # that requires -fno-function-sections to work properly. If lacking, the ASan | 
|  | 187 | # Linux test function-sections-are-bad.cc fails with the following error: | 
|  | 188 | # 'undefined symbol: __sanitizer_unaligned_load32'. | 
|  | 189 | if(DEFINED TARGET_powerpc64le_CFLAGS) | 
|  | 190 | append_list_if(COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG -fno-function-sections TARGET_powerpc64le_CFLAGS) | 
|  | 191 | endif() | 
|  | 192 |  | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 193 | if(MSVC) | 
| Peter Collingbourne | 702548d | 2015-07-08 22:10:34 +0000 | [diff] [blame] | 194 | # Replace the /M[DT][d] flags with /MT, and strip any definitions of _DEBUG, | 
|  | 195 | # which cause definition mismatches at link time. | 
| Timur Iskhodzhanov | de1718d | 2014-08-12 09:44:56 +0000 | [diff] [blame] | 196 | # FIXME: In fact, sanitizers should support both /MT and /MD, see PR20214. | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 197 | if(COMPILER_RT_HAS_MT_FLAG) | 
| Aaron Ballman | 7c7be2f | 2014-10-23 20:24:00 +0000 | [diff] [blame] | 198 | foreach(flag_var | 
| Andrey Turetskiy | bc0122b | 2016-02-20 12:56:04 +0000 | [diff] [blame] | 199 | CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE | 
|  | 200 | CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO | 
| Aaron Ballman | 7c7be2f | 2014-10-23 20:24:00 +0000 | [diff] [blame] | 201 | CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE | 
|  | 202 | CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO) | 
| Peter Collingbourne | 702548d | 2015-07-08 22:10:34 +0000 | [diff] [blame] | 203 | string(REGEX REPLACE "/M[DT]d" "/MT" ${flag_var} "${${flag_var}}") | 
|  | 204 | string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | 
|  | 205 | string(REGEX REPLACE "/D_DEBUG" "" ${flag_var} "${${flag_var}}") | 
| Aaron Ballman | 7c7be2f | 2014-10-23 20:24:00 +0000 | [diff] [blame] | 206 | endforeach() | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 207 | endif() | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 208 | append_list_if(COMPILER_RT_HAS_Oy_FLAG /Oy- SANITIZER_COMMON_CFLAGS) | 
|  | 209 | append_list_if(COMPILER_RT_HAS_GS_FLAG /GS- SANITIZER_COMMON_CFLAGS) | 
| Reid Kleckner | 21aca48 | 2016-03-21 20:08:59 +0000 | [diff] [blame] | 210 | # VS 2015 (version 1900) added support for thread safe static initialization. | 
|  | 211 | # However, ASan interceptors run before CRT initialization, which causes the | 
|  | 212 | # new thread safe code to crash. Disable this feature for now. | 
| Reid Kleckner | f6d5475 | 2016-07-21 20:03:37 +0000 | [diff] [blame] | 213 | if (MSVC_VERSION GREATER 1899 OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") | 
| Reid Kleckner | 21aca48 | 2016-03-21 20:08:59 +0000 | [diff] [blame] | 214 | list(APPEND SANITIZER_COMMON_CFLAGS /Zc:threadSafeInit-) | 
|  | 215 | endif() | 
| Alexey Samsonov | 6c282b4 | 2014-02-28 08:04:30 +0000 | [diff] [blame] | 216 | endif() | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 217 |  | 
| Alexey Samsonov | ea04032 | 2015-01-06 20:25:34 +0000 | [diff] [blame] | 218 | append_list_if(COMPILER_RT_DEBUG -DSANITIZER_DEBUG=1 SANITIZER_COMMON_CFLAGS) | 
| Alexey Samsonov | df3aeb8 | 2015-01-03 04:29:12 +0000 | [diff] [blame] | 219 |  | 
| George Karpenkov | e89d0a8 | 2017-07-15 00:30:46 +0000 | [diff] [blame] | 220 | # If we're using MSVC, | 
| Alexey Samsonov | cbc6852 | 2014-03-13 13:37:07 +0000 | [diff] [blame] | 221 | # always respect the optimization flags set by CMAKE_BUILD_TYPE instead. | 
| George Karpenkov | e89d0a8 | 2017-07-15 00:30:46 +0000 | [diff] [blame] | 222 | if (NOT MSVC) | 
|  | 223 |  | 
|  | 224 | # Build with optimization, unless we're in debug mode. | 
|  | 225 | if(COMPILER_RT_DEBUG) | 
|  | 226 | list(APPEND SANITIZER_COMMON_CFLAGS -O0) | 
|  | 227 | else() | 
|  | 228 | list(APPEND SANITIZER_COMMON_CFLAGS -O3) | 
|  | 229 | endif() | 
| Hans Wennborg | 67c6e50 | 2013-08-27 01:24:01 +0000 | [diff] [blame] | 230 | endif() | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 231 |  | 
| Alexey Samsonov | df3aeb8 | 2015-01-03 04:29:12 +0000 | [diff] [blame] | 232 | # Determine if we should restrict stack frame sizes. | 
| Dmitry Vyukov | 4bf0894 | 2015-04-10 09:45:22 +0000 | [diff] [blame] | 233 | # 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] | 234 | # anticipated. | 
|  | 235 | # FIXME: Fix all sanitizers and add -Wframe-larger-than to | 
|  | 236 | # SANITIZER_COMMON_FLAGS | 
|  | 237 | 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] | 238 | AND NOT ${COMPILER_RT_DEFAULT_TARGET_ARCH} MATCHES "powerpc|mips") | 
| Alexey Samsonov | df3aeb8 | 2015-01-03 04:29:12 +0000 | [diff] [blame] | 239 | set(SANITIZER_LIMIT_FRAME_SIZE TRUE) | 
|  | 240 | else() | 
|  | 241 | set(SANITIZER_LIMIT_FRAME_SIZE FALSE) | 
|  | 242 | endif() | 
|  | 243 |  | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 244 | # Build sanitizer runtimes with debug info. | 
| Kuba Brecka | 5238deb | 2014-12-23 01:52:53 +0000 | [diff] [blame] | 245 | 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] | 246 | list(APPEND SANITIZER_COMMON_CFLAGS -gline-tables-only) | 
|  | 247 | elseif(COMPILER_RT_HAS_G_FLAG) | 
|  | 248 | list(APPEND SANITIZER_COMMON_CFLAGS -g) | 
| Reid Kleckner | 1734b97 | 2016-08-02 01:02:46 +0000 | [diff] [blame] | 249 | elseif(MSVC) | 
|  | 250 | # Use /Z7 instead of /Zi for the asan runtime. This avoids the LNK4099 | 
|  | 251 | # warning from the MS linker complaining that it can't find the 'vc140.pdb' | 
|  | 252 | # file used by our object library compilations. | 
|  | 253 | list(APPEND SANITIZER_COMMON_CFLAGS /Z7) | 
|  | 254 | llvm_replace_compiler_option(CMAKE_CXX_FLAGS "/Z[i7I]" "/Z7") | 
|  | 255 | llvm_replace_compiler_option(CMAKE_CXX_FLAGS_DEBUG "/Z[i7I]" "/Z7") | 
|  | 256 | llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELWITHDEBINFO "/Z[i7I]" "/Z7") | 
| Alexey Samsonov | 75fb677 | 2012-11-08 14:49:28 +0000 | [diff] [blame] | 257 | endif() | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 258 |  | 
| Kuba Brecka | ab61c74 | 2016-10-08 09:01:27 +0000 | [diff] [blame] | 259 | if(LLVM_ENABLE_MODULES) | 
|  | 260 | # Sanitizers cannot be built with -fmodules. The interceptors intentionally | 
|  | 261 | # don't include system headers, which is incompatible with modules. | 
|  | 262 | list(APPEND SANITIZER_COMMON_CFLAGS -fno-modules) | 
|  | 263 | endif() | 
|  | 264 |  | 
| Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 265 | # Turn off several warnings. | 
| Alexey Samsonov | 829da45 | 2014-11-13 21:19:53 +0000 | [diff] [blame] | 266 | append_list_if(COMPILER_RT_HAS_WGNU_FLAG -Wno-gnu SANITIZER_COMMON_CFLAGS) | 
|  | 267 | append_list_if(COMPILER_RT_HAS_WVARIADIC_MACROS_FLAG -Wno-variadic-macros SANITIZER_COMMON_CFLAGS) | 
|  | 268 | append_list_if(COMPILER_RT_HAS_WC99_EXTENSIONS_FLAG -Wno-c99-extensions SANITIZER_COMMON_CFLAGS) | 
|  | 269 | 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] | 270 | append_list_if(COMPILER_RT_HAS_WD4146_FLAG /wd4146 SANITIZER_COMMON_CFLAGS) | 
|  | 271 | append_list_if(COMPILER_RT_HAS_WD4291_FLAG /wd4291 SANITIZER_COMMON_CFLAGS) | 
| Kuba Brecka | 14c0c59 | 2014-10-15 22:47:54 +0000 | [diff] [blame] | 272 | append_list_if(COMPILER_RT_HAS_WD4391_FLAG /wd4391 SANITIZER_COMMON_CFLAGS) | 
|  | 273 | append_list_if(COMPILER_RT_HAS_WD4722_FLAG /wd4722 SANITIZER_COMMON_CFLAGS) | 
| Aaron Ballman | 1d1f232 | 2014-10-23 20:39:58 +0000 | [diff] [blame] | 274 | append_list_if(COMPILER_RT_HAS_WD4800_FLAG /wd4800 SANITIZER_COMMON_CFLAGS) | 
| Chandler Carruth | c1c9d58 | 2012-08-29 00:13:11 +0000 | [diff] [blame] | 275 |  | 
| Petr Hosek | 2bbb6ad | 2017-07-28 03:39:38 +0000 | [diff] [blame] | 276 | # Set common link flags. | 
|  | 277 | append_list_if(COMPILER_RT_HAS_NODEFAULTLIBS_FLAG -nodefaultlibs SANITIZER_COMMON_LINK_FLAGS) | 
|  | 278 |  | 
|  | 279 | if (SANITIZER_USE_COMPILER_RT) | 
|  | 280 | list(APPEND SANITIZER_COMMON_LINK_FLAGS -rtlib=compiler-rt) | 
|  | 281 | find_compiler_rt_library(builtins COMPILER_RT_BUILTINS_LIBRARY) | 
|  | 282 | list(APPEND SANITIZER_COMMON_LINK_LIBS ${COMPILER_RT_BUILTINS_LIBRARY}) | 
|  | 283 | else() | 
| Petr Hosek | a14a2cc | 2017-07-31 22:46:43 +0000 | [diff] [blame] | 284 | if (ANDROID) | 
|  | 285 | append_list_if(COMPILER_RT_HAS_GCC_LIB gcc SANITIZER_COMMON_LINK_LIBS) | 
|  | 286 | else() | 
|  | 287 | append_list_if(COMPILER_RT_HAS_GCC_S_LIB gcc_s SANITIZER_COMMON_LINK_LIBS) | 
|  | 288 | endif() | 
| Petr Hosek | 2bbb6ad | 2017-07-28 03:39:38 +0000 | [diff] [blame] | 289 | endif() | 
|  | 290 |  | 
|  | 291 | append_list_if(COMPILER_RT_HAS_LIBC c SANITIZER_COMMON_LINK_LIBS) | 
|  | 292 |  | 
| Vitaly Buka | 5d960ec | 2017-08-01 22:22:25 +0000 | [diff] [blame] | 293 | if("${CMAKE_SYSTEM_NAME}" STREQUAL "Fuchsia") | 
|  | 294 | list(APPEND SANITIZER_COMMON_LINK_FLAGS -Wl,-z,defs,-z,now,-z,relro) | 
|  | 295 | list(APPEND SANITIZER_COMMON_LINK_LIBS magenta) | 
|  | 296 | endif() | 
|  | 297 |  | 
| Reid Kleckner | 44e6e36 | 2016-06-17 18:30:37 +0000 | [diff] [blame] | 298 | # Warnings to turn off for all libraries, not just sanitizers. | 
|  | 299 | append_string_if(COMPILER_RT_HAS_WUNUSED_PARAMETER_FLAG -Wno-unused-parameter CMAKE_C_FLAGS CMAKE_CXX_FLAGS) | 
|  | 300 |  | 
| Bob Haarman | f51b0d5 | 2017-01-04 21:40:00 +0000 | [diff] [blame] | 301 | if (CMAKE_LINKER MATCHES "link.exe$") | 
|  | 302 | # Silence MSVC linker warnings caused by empty object files. The | 
|  | 303 | # sanitizer libraries intentionally use ifdefs that result in empty | 
|  | 304 | # files, rather than skipping these files in the build system. | 
|  | 305 | # Ideally, we would pass this flag only for the libraries that need | 
|  | 306 | # it, but CMake doesn't seem to have a way to set linker flags for | 
|  | 307 | # individual static libraries, so we enable the suppression flag for | 
|  | 308 | # the whole compiler-rt project. | 
|  | 309 | append("/IGNORE:4221" CMAKE_STATIC_LINKER_FLAGS) | 
|  | 310 | endif() | 
|  | 311 |  | 
| Alexey Samsonov | 9f3938e | 2013-04-11 15:49:52 +0000 | [diff] [blame] | 312 | add_subdirectory(include) | 
|  | 313 |  | 
| Reid Kleckner | b509318 | 2015-08-11 17:22:06 +0000 | [diff] [blame] | 314 | set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/projects/libcxx) | 
| Alexey Samsonov | 8434e60 | 2014-02-14 13:02:58 +0000 | [diff] [blame] | 315 | if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/) | 
|  | 316 | set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE) | 
|  | 317 | else() | 
| Reid Kleckner | e2328eb | 2017-05-09 15:54:57 +0000 | [diff] [blame] | 318 | set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/../libcxx) | 
|  | 319 | if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/) | 
|  | 320 | set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE) | 
|  | 321 | else() | 
|  | 322 | set(COMPILER_RT_HAS_LIBCXX_SOURCES FALSE) | 
|  | 323 | endif() | 
| Alexey Samsonov | 8434e60 | 2014-02-14 13:02:58 +0000 | [diff] [blame] | 324 | endif() | 
|  | 325 |  | 
| Reid Kleckner | c1cd8dd | 2015-08-11 18:43:13 +0000 | [diff] [blame] | 326 | set(COMPILER_RT_LLD_PATH ${LLVM_MAIN_SRC_DIR}/tools/lld) | 
| Evgeniy Stepanov | 656bc5b | 2017-03-25 00:42:25 +0000 | [diff] [blame] | 327 | if(EXISTS ${COMPILER_RT_LLD_PATH}/ AND LLVM_TOOL_LLD_BUILD) | 
|  | 328 | set(COMPILER_RT_HAS_LLD TRUE) | 
| Reid Kleckner | 45ebaf1 | 2015-08-11 00:33:07 +0000 | [diff] [blame] | 329 | else() | 
| Reid Kleckner | e2328eb | 2017-05-09 15:54:57 +0000 | [diff] [blame] | 330 | set(COMPILER_RT_LLD_PATH ${LLVM_MAIN_SRC_DIR}/../lld) | 
| Tim Northover | ada0435 | 2017-06-05 15:10:04 +0000 | [diff] [blame] | 331 | if(EXISTS ${COMPILER_RT_LLD_PATH}/ AND LLVM_TOOL_LLD_BUILD) | 
| Reid Kleckner | e2328eb | 2017-05-09 15:54:57 +0000 | [diff] [blame] | 332 | set(COMPILER_RT_HAS_LLD TRUE) | 
|  | 333 | else() | 
|  | 334 | set(COMPILER_RT_HAS_LLD FALSE) | 
|  | 335 | endif() | 
| Reid Kleckner | 45ebaf1 | 2015-08-11 00:33:07 +0000 | [diff] [blame] | 336 | endif() | 
| Evgeniy Stepanov | 656bc5b | 2017-03-25 00:42:25 +0000 | [diff] [blame] | 337 | pythonize_bool(COMPILER_RT_HAS_LLD) | 
| Reid Kleckner | 45ebaf1 | 2015-08-11 00:33:07 +0000 | [diff] [blame] | 338 |  | 
| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 339 | add_subdirectory(lib) | 
|  | 340 |  | 
| Alexey Samsonov | cd8535a | 2014-02-19 11:18:47 +0000 | [diff] [blame] | 341 | if(COMPILER_RT_INCLUDE_TESTS) | 
| Alexey Samsonov | 81a2b46 | 2014-02-14 11:00:07 +0000 | [diff] [blame] | 342 | add_subdirectory(unittests) | 
| Chris Bieneman | fb92d9a | 2015-09-14 19:54:12 +0000 | [diff] [blame] | 343 | add_subdirectory(test) | 
| Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 344 | endif() |