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