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) |
| 12 | project(CompilerRT) |
| 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 | |
Alexey Samsonov | 20abdf6 | 2013-10-01 12:52:15 +0000 | [diff] [blame] | 29 | # Top level target used to build all compiler-rt libraries. |
| 30 | add_custom_target(compiler-rt) |
| 31 | |
Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 32 | if (NOT COMPILER_RT_STANDALONE_BUILD) |
| 33 | # Compute the Clang version from the LLVM version. |
| 34 | # FIXME: We should be able to reuse CLANG_VERSION variable calculated |
| 35 | # in Clang cmake files, instead of copying the rules here. |
| 36 | string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION |
| 37 | ${PACKAGE_VERSION}) |
| 38 | # Setup the paths where compiler-rt runtimes and headers should be stored. |
| 39 | set(COMPILER_RT_OUTPUT_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/clang/${CLANG_VERSION}) |
| 40 | set(COMPILER_RT_INSTALL_PATH lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION}) |
Alexey Samsonov | cd8535a | 2014-02-19 11:18:47 +0000 | [diff] [blame^] | 41 | option(COMPILER_RT_INCLUDE_TESTS "Generate and build compiler-rt unit tests." |
| 42 | ${LLVM_INCLUDE_TESTS}) |
Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 43 | else() |
| 44 | # Take output dir and install path from the user. |
| 45 | set(COMPILER_RT_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE PATH |
| 46 | "Path where built compiler-rt libraries should be stored.") |
| 47 | set(COMPILER_RT_INSTALL_PATH ${CMAKE_INSTALL_PREFIX} CACHE PATH |
| 48 | "Path where built compiler-rt libraries should be installed.") |
Alexey Samsonov | cd8535a | 2014-02-19 11:18:47 +0000 | [diff] [blame^] | 49 | option(COMPILER_RT_INCLUDE_TESTS "Generate and build compiler-rt unit tests." OFF) |
Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 50 | |
| 51 | set(LLVM_CONFIG_PATH "" CACHE PATH "Path to llvm-config binary") |
| 52 | if (NOT LLVM_CONFIG_PATH) |
| 53 | find_program(LLVM_CONFIG_PATH "llvm-config") |
| 54 | if (NOT LLVM_CONFIG_PATH) |
| 55 | message(FATAL_ERROR "llvm-config not found: specify LLVM_CONFIG_PATH") |
| 56 | endif() |
Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 57 | endif() |
Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 58 | execute_process( |
| 59 | COMMAND ${LLVM_CONFIG_PATH} "--obj-root" "--bindir" "--libdir" "--src-root" |
| 60 | RESULT_VARIABLE HAD_ERROR |
| 61 | OUTPUT_VARIABLE CONFIG_OUTPUT) |
| 62 | if (HAD_ERROR) |
| 63 | message(FATAL_ERROR "llvm-config failed with status ${HAD_ERROR}") |
| 64 | endif() |
| 65 | string(REGEX REPLACE "[ \t]*[\r\n]+[ \t]*" ";" CONFIG_OUTPUT ${CONFIG_OUTPUT}) |
| 66 | list(GET CONFIG_OUTPUT 0 LLVM_BINARY_DIR) |
| 67 | list(GET CONFIG_OUTPUT 1 LLVM_TOOLS_BINARY_DIR) |
| 68 | list(GET CONFIG_OUTPUT 2 LLVM_LIBRARY_DIR) |
| 69 | list(GET CONFIG_OUTPUT 3 LLVM_MAIN_SRC_DIR) |
| 70 | |
Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 71 | # Make use of LLVM CMake modules. |
Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 72 | set(LLVM_CMAKE_PATH "${LLVM_BINARY_DIR}/share/llvm/cmake") |
Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 73 | list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_PATH}") |
| 74 | # Get some LLVM variables from LLVMConfig. |
| 75 | include("${LLVM_CMAKE_PATH}/LLVMConfig.cmake") |
| 76 | |
Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 77 | set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib) |
Alexey Samsonov | aa980c7 | 2014-02-19 10:04:29 +0000 | [diff] [blame] | 78 | |
| 79 | # Find Python interpreter. |
| 80 | set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5) |
| 81 | include(FindPythonInterp) |
| 82 | if(NOT PYTHONINTERP_FOUND) |
| 83 | message(FATAL_ERROR " |
| 84 | Unable to find Python interpreter required testing. Please install Python |
| 85 | or specify the PYTHON_EXECUTABLE CMake variable.") |
| 86 | endif() |
| 87 | |
| 88 | # Define default arguments to lit. |
| 89 | set(LIT_ARGS_DEFAULT "-sv") |
| 90 | if (MSVC OR XCODE) |
| 91 | set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar") |
| 92 | endif() |
| 93 | 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] | 94 | endif() |
| 95 | |
Alexey Samsonov | 1181a10 | 2014-02-18 14:28:53 +0000 | [diff] [blame] | 96 | string(TOLOWER ${CMAKE_SYSTEM_NAME} COMPILER_RT_OS_DIR) |
Alexey Samsonov | 1181a10 | 2014-02-18 14:28:53 +0000 | [diff] [blame] | 97 | set(COMPILER_RT_LIBRARY_OUTPUT_DIR |
| 98 | ${COMPILER_RT_OUTPUT_DIR}/lib/${COMPILER_RT_OS_DIR}) |
Alexey Samsonov | 8c2cd86 | 2013-01-20 13:58:10 +0000 | [diff] [blame] | 99 | set(COMPILER_RT_LIBRARY_INSTALL_DIR |
Alexey Samsonov | 1181a10 | 2014-02-18 14:28:53 +0000 | [diff] [blame] | 100 | ${COMPILER_RT_INSTALL_PATH}/lib/${COMPILER_RT_OS_DIR}) |
Alexey Samsonov | 8c2cd86 | 2013-01-20 13:58:10 +0000 | [diff] [blame] | 101 | |
Alexey Samsonov | de4ef2a | 2014-02-19 07:49:16 +0000 | [diff] [blame] | 102 | # Add path for custom compiler-rt modules. |
Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 103 | set(CMAKE_MODULE_PATH |
Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 104 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake" |
Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 105 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules" |
Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 106 | ${CMAKE_MODULE_PATH} |
Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 107 | ) |
Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 108 | include(CompilerRTUtils) |
Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 109 | |
| 110 | set(COMPILER_RT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) |
Alexey Samsonov | 6a65b18 | 2013-06-06 12:35:48 +0000 | [diff] [blame] | 111 | set(COMPILER_RT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) |
Alexey Samsonov | 4c17c1b | 2013-03-19 09:17:35 +0000 | [diff] [blame] | 112 | # Setup custom SDK sysroots. |
| 113 | set(COMPILER_RT_DARWIN_SDK_SYSROOT ${COMPILER_RT_SOURCE_DIR}/SDKs/darwin) |
| 114 | set(COMPILER_RT_LINUX_SDK_SYSROOT ${COMPILER_RT_SOURCE_DIR}/SDKs/linux) |
Alexey Samsonov | ca7fcf2 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 115 | |
Evgeniy Stepanov | 6db97e8 | 2014-02-10 13:34:43 +0000 | [diff] [blame] | 116 | set(COMPILER_RT_EXTRA_ANDROID_HEADERS ${COMPILER_RT_SOURCE_DIR}/third_party/android/include) |
| 117 | |
Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 118 | # Detect whether the current target platform is 32-bit or 64-bit, and setup |
| 119 | # 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] | 120 | if (NOT CMAKE_SIZEOF_VOID_P EQUAL 4 AND |
| 121 | NOT CMAKE_SIZEOF_VOID_P EQUAL 8) |
| 122 | message(FATAL_ERROR "Please use architecture with 4 or 8 byte pointers.") |
Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 123 | endif() |
Hans Wennborg | 67c6e50 | 2013-08-27 01:24:01 +0000 | [diff] [blame] | 124 | if (NOT MSVC) |
| 125 | set(TARGET_64_BIT_CFLAGS "-m64") |
| 126 | set(TARGET_32_BIT_CFLAGS "-m32") |
| 127 | else() |
| 128 | set(TARGET_64_BIT_CFLAGS "") |
| 129 | set(TARGET_32_BIT_CFLAGS "") |
| 130 | endif() |
Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 131 | |
Alexey Samsonov | b670018 | 2013-01-21 14:31:45 +0000 | [diff] [blame] | 132 | # List of architectures we can target. |
| 133 | set(COMPILER_RT_SUPPORTED_ARCH) |
Alexey Samsonov | 4b0ee8e | 2013-01-18 13:10:42 +0000 | [diff] [blame] | 134 | |
Alexey Samsonov | 85bd73d | 2012-12-19 15:17:23 +0000 | [diff] [blame] | 135 | function(get_target_flags_for_arch arch out_var) |
Alexey Samsonov | 4b0ee8e | 2013-01-18 13:10:42 +0000 | [diff] [blame] | 136 | list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX) |
| 137 | if(ARCH_INDEX EQUAL -1) |
Alexey Samsonov | 85bd73d | 2012-12-19 15:17:23 +0000 | [diff] [blame] | 138 | message(FATAL_ERROR "Unsupported architecture: ${arch}") |
Alexey Samsonov | 4b0ee8e | 2013-01-18 13:10:42 +0000 | [diff] [blame] | 139 | else() |
| 140 | set(${out_var} ${TARGET_${arch}_CFLAGS} PARENT_SCOPE) |
Alexey Samsonov | 85bd73d | 2012-12-19 15:17:23 +0000 | [diff] [blame] | 141 | endif() |
| 142 | endfunction() |
| 143 | |
Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 144 | # Try to compile a very simple source file to ensure we can target the given |
| 145 | # platform. We use the results of these tests to build only the various target |
| 146 | # runtime libraries supported by our current compilers cross-compiling |
| 147 | # abilities. |
Alexey Samsonov | b670018 | 2013-01-21 14:31:45 +0000 | [diff] [blame] | 148 | set(SIMPLE_SOURCE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/simple.c) |
| 149 | file(WRITE ${SIMPLE_SOURCE} "#include <stdlib.h>\nint main() {}") |
Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 150 | |
Alexey Samsonov | b670018 | 2013-01-21 14:31:45 +0000 | [diff] [blame] | 151 | # test_target_arch(<arch> <target flags...>) |
| 152 | # Sets the target flags for a given architecture and determines if this |
| 153 | # architecture is supported by trying to build a simple file. |
| 154 | macro(test_target_arch arch) |
| 155 | set(TARGET_${arch}_CFLAGS ${ARGN}) |
| 156 | try_compile(CAN_TARGET_${arch} ${CMAKE_BINARY_DIR} ${SIMPLE_SOURCE} |
| 157 | COMPILE_DEFINITIONS "${TARGET_${arch}_CFLAGS}" |
| 158 | CMAKE_FLAGS "-DCMAKE_EXE_LINKER_FLAGS:STRING=${TARGET_${arch}_CFLAGS}") |
| 159 | if(${CAN_TARGET_${arch}}) |
| 160 | list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch}) |
| 161 | endif() |
| 162 | endmacro() |
| 163 | |
Evgeniy Stepanov | aa9d74c | 2014-02-14 09:22:10 +0000 | [diff] [blame] | 164 | if(ANDROID_COMMON_FLAGS) |
| 165 | test_target_arch(arm_android "${ANDROID_COMMON_FLAGS}") |
| 166 | else() |
| 167 | if("${LLVM_NATIVE_ARCH}" STREQUAL "X86") |
| 168 | if (NOT MSVC) |
| 169 | test_target_arch(x86_64 ${TARGET_64_BIT_CFLAGS}) |
| 170 | endif() |
| 171 | test_target_arch(i386 ${TARGET_32_BIT_CFLAGS}) |
| 172 | elseif("${LLVM_NATIVE_ARCH}" STREQUAL "PowerPC") |
| 173 | test_target_arch(powerpc64 ${TARGET_64_BIT_CFLAGS}) |
| 174 | elseif("${LLVM_NATIVE_ARCH}" STREQUAL "ARM") |
| 175 | test_target_arch(arm "") |
Hans Wennborg | 67c6e50 | 2013-08-27 01:24:01 +0000 | [diff] [blame] | 176 | endif() |
Alexey Samsonov | b670018 | 2013-01-21 14:31:45 +0000 | [diff] [blame] | 177 | endif() |
Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 178 | |
Alexey Samsonov | c20f5d2 | 2012-12-27 13:19:23 +0000 | [diff] [blame] | 179 | # We only support running instrumented tests when we're not cross compiling |
Evgeniy Stepanov | aa9d74c | 2014-02-14 09:22:10 +0000 | [diff] [blame] | 180 | # and target a unix-like system. We can run tests on Android even when we are |
| 181 | # cross-compiling. |
| 182 | if(("${CMAKE_HOST_SYSTEM}" STREQUAL "${CMAKE_SYSTEM}" AND UNIX) OR ANDROID) |
Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 183 | option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" ON) |
Alexey Samsonov | c20f5d2 | 2012-12-27 13:19:23 +0000 | [diff] [blame] | 184 | else() |
Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 185 | option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" OFF) |
Alexey Samsonov | c20f5d2 | 2012-12-27 13:19:23 +0000 | [diff] [blame] | 186 | endif() |
Michael Gottesman | 4ddc215 | 2013-04-01 04:13:03 +0000 | [diff] [blame] | 187 | |
Alexey Samsonov | 5cb7860 | 2013-02-08 07:39:25 +0000 | [diff] [blame] | 188 | # Check if compiler-rt is built with libc++. |
| 189 | find_flag_in_string("${CMAKE_CXX_FLAGS}" "-stdlib=libc++" |
| 190 | COMPILER_RT_USES_LIBCXX) |
| 191 | |
Alexey Samsonov | fb844c7 | 2012-08-10 14:45:52 +0000 | [diff] [blame] | 192 | function(filter_available_targets out_var) |
| 193 | set(archs) |
| 194 | foreach(arch ${ARGN}) |
Alexey Samsonov | 4b0ee8e | 2013-01-18 13:10:42 +0000 | [diff] [blame] | 195 | list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX) |
| 196 | if(NOT (ARCH_INDEX EQUAL -1) AND CAN_TARGET_${arch}) |
Alexey Samsonov | fb844c7 | 2012-08-10 14:45:52 +0000 | [diff] [blame] | 197 | list(APPEND archs ${arch}) |
| 198 | endif() |
| 199 | endforeach() |
| 200 | set(${out_var} ${archs} PARENT_SCOPE) |
| 201 | endfunction() |
| 202 | |
Peter Collingbourne | cbdea32 | 2013-10-25 23:03:34 +0000 | [diff] [blame] | 203 | option(COMPILER_RT_DEBUG "Build runtimes with full debug info" OFF) |
Peter Collingbourne | cbdea32 | 2013-10-25 23:03:34 +0000 | [diff] [blame] | 204 | # COMPILER_RT_DEBUG_PYBOOL is used by lit.common.configured.in. |
| 205 | pythonize_bool(COMPILER_RT_DEBUG) |
| 206 | |
Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 207 | #================================ |
| 208 | # Setup Compiler Flags |
| 209 | #================================ |
| 210 | include(config-ix) |
| 211 | |
Chandler Carruth | c1c9d58 | 2012-08-29 00:13:11 +0000 | [diff] [blame] | 212 | # Provide some common commmandline flags for Sanitizer runtimes. |
Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 213 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FPIC_FLAG -fPIC) |
| 214 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_BUILTIN_FLAG -fno-builtin) |
| 215 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG -fno-exceptions) |
| 216 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG -fomit-frame-pointer) |
| 217 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FUNWIND_TABLES_FLAG -funwind-tables) |
| 218 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG -fno-stack-protector) |
| 219 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG -fvisibility=hidden) |
| 220 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG -fno-function-sections) |
| 221 | |
| 222 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_MT_FLAG /MT) |
| 223 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_Oy_FLAG /Oy-) |
| 224 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_GS_FLAG /GS-) |
| 225 | |
| 226 | # Build with optimization, unless we're in debug mode. |
| 227 | if(NOT COMPILER_RT_DEBUG) |
| 228 | if(MSVC) |
| 229 | list(APPEND SANITIZER_COMMON_CFLAGS /O2) |
| 230 | else() |
Peter Collingbourne | cbdea32 | 2013-10-25 23:03:34 +0000 | [diff] [blame] | 231 | list(APPEND SANITIZER_COMMON_CFLAGS -O3) |
| 232 | endif() |
Hans Wennborg | 67c6e50 | 2013-08-27 01:24:01 +0000 | [diff] [blame] | 233 | endif() |
Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 234 | |
| 235 | # Build sanitizer runtimes with debug info. |
| 236 | if(COMPILER_RT_HAS_GLINE_TABLES_ONLY_FLAG) |
| 237 | list(APPEND SANITIZER_COMMON_CFLAGS -gline-tables-only) |
| 238 | elseif(COMPILER_RT_HAS_G_FLAG) |
| 239 | list(APPEND SANITIZER_COMMON_CFLAGS -g) |
| 240 | elseif(COMPILER_RT_HAS_Zi_FLAG) |
| 241 | list(APPEND SANITIZER_COMMON_CFLAGS /Zi) |
Alexey Samsonov | 75fb677 | 2012-11-08 14:49:28 +0000 | [diff] [blame] | 242 | endif() |
Alexey Samsonov | 9a1ffce | 2014-02-18 07:26:58 +0000 | [diff] [blame] | 243 | |
| 244 | # Turn off several warnings. |
| 245 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_GNU_FLAG -Wno-gnu) |
| 246 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_VARIADIC_MACROS_FLAG -Wno-variadic-macros) |
| 247 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_C99_EXTENSIONS_FLAG -Wno-c99-extensions) |
| 248 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_NON_VIRTUAL_DTOR_FLAG -Wno-non-virtual-dtor) |
| 249 | append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WD4722_FLAG /wd4722) |
Alexey Samsonov | 5cb7860 | 2013-02-08 07:39:25 +0000 | [diff] [blame] | 250 | |
Alexey Samsonov | d83ccd0 | 2012-09-05 09:00:03 +0000 | [diff] [blame] | 251 | if(APPLE) |
Alexander Potapenko | 49034e3 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 252 | # Obtain the iOS Simulator SDK path from xcodebuild. |
| 253 | execute_process( |
| 254 | COMMAND xcodebuild -version -sdk iphonesimulator Path |
| 255 | OUTPUT_VARIABLE IOSSIM_SDK_DIR |
| 256 | OUTPUT_STRIP_TRAILING_WHITESPACE |
| 257 | ) |
Alexey Samsonov | 1dbe6e0 | 2014-02-18 12:01:24 +0000 | [diff] [blame] | 258 | string(REGEX MATCH "-mmacosx-version-min=" |
| 259 | MACOSX_VERSION_MIN_FLAG "${CMAKE_CXX_FLAGS}") |
Alexander Potapenko | 49034e3 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 260 | set(SANITIZER_COMMON_SUPPORTED_DARWIN_OS osx) |
Alexey Samsonov | 1dbe6e0 | 2014-02-18 12:01:24 +0000 | [diff] [blame] | 261 | if (IOSSIM_SDK_DIR AND NOT MACOSX_VERSION_MIN_FLAG) |
Alexander Potapenko | 49034e3 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 262 | list(APPEND SANITIZER_COMMON_SUPPORTED_DARWIN_OS iossim) |
| 263 | endif() |
| 264 | |
Alexey Samsonov | 5cb7860 | 2013-02-08 07:39:25 +0000 | [diff] [blame] | 265 | if(COMPILER_RT_USES_LIBCXX) |
| 266 | set(SANITIZER_MIN_OSX_VERSION 10.7) |
| 267 | else() |
Alexey Samsonov | eb79732 | 2013-07-16 11:54:40 +0000 | [diff] [blame] | 268 | set(SANITIZER_MIN_OSX_VERSION 10.6) |
Alexey Samsonov | 5cb7860 | 2013-02-08 07:39:25 +0000 | [diff] [blame] | 269 | endif() |
Alexander Potapenko | 49034e3 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 270 | set(DARWIN_osx_CFLAGS -mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION}) |
| 271 | set(DARWIN_iossim_CFLAGS |
| 272 | -mios-simulator-version-min=7.0 -isysroot ${IOSSIM_SDK_DIR}) |
| 273 | set(DARWIN_osx_LINKFLAGS) |
| 274 | set(DARWIN_iossim_LINKFLAGS |
| 275 | -Wl,-ios_simulator_version_min,7.0.0 |
| 276 | -mios-simulator-version-min=7.0 |
Alexander Potapenko | 2b00289 | 2013-11-19 14:58:42 +0000 | [diff] [blame] | 277 | -isysroot ${IOSSIM_SDK_DIR}) |
Alexey Samsonov | d83ccd0 | 2012-09-05 09:00:03 +0000 | [diff] [blame] | 278 | endif() |
Chandler Carruth | c1c9d58 | 2012-08-29 00:13:11 +0000 | [diff] [blame] | 279 | |
Alexey Samsonov | b068483 | 2013-01-18 16:51:07 +0000 | [diff] [blame] | 280 | # Architectures supported by Sanitizer runtimes. Specific sanitizers may |
| 281 | # support only subset of these (e.g. TSan works on x86_64 only). |
| 282 | filter_available_targets(SANITIZER_COMMON_SUPPORTED_ARCH |
Renato Golin | 66e2b70 | 2014-01-31 14:25:58 +0000 | [diff] [blame] | 283 | x86_64 i386 powerpc64 arm) |
Alexey Samsonov | 9f20d67 | 2014-02-14 14:06:10 +0000 | [diff] [blame] | 284 | filter_available_targets(ASAN_SUPPORTED_ARCH x86_64 i386 powerpc64) |
Alexey Samsonov | f6cf6ab | 2014-02-14 12:05:41 +0000 | [diff] [blame] | 285 | filter_available_targets(DFSAN_SUPPORTED_ARCH x86_64) |
Alexey Samsonov | 7eeef85 | 2014-02-14 12:26:05 +0000 | [diff] [blame] | 286 | filter_available_targets(LSAN_SUPPORTED_ARCH x86_64) |
Alexey Samsonov | 8434e60 | 2014-02-14 13:02:58 +0000 | [diff] [blame] | 287 | filter_available_targets(MSAN_SUPPORTED_ARCH x86_64) |
Alexey Samsonov | e6a6183 | 2014-02-14 14:35:48 +0000 | [diff] [blame] | 288 | filter_available_targets(TSAN_SUPPORTED_ARCH x86_64) |
Alexey Samsonov | f6cf6ab | 2014-02-14 12:05:41 +0000 | [diff] [blame] | 289 | filter_available_targets(UBSAN_SUPPORTED_ARCH x86_64 i386) |
Alexey Samsonov | b068483 | 2013-01-18 16:51:07 +0000 | [diff] [blame] | 290 | |
Alexey Samsonov | 9f3938e | 2013-04-11 15:49:52 +0000 | [diff] [blame] | 291 | add_subdirectory(include) |
| 292 | |
Alexey Samsonov | 8434e60 | 2014-02-14 13:02:58 +0000 | [diff] [blame] | 293 | set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/projects/libcxx) |
| 294 | if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/) |
| 295 | set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE) |
| 296 | else() |
| 297 | set(COMPILER_RT_HAS_LIBCXX_SOURCES FALSE) |
| 298 | endif() |
| 299 | |
Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 300 | add_subdirectory(lib) |
| 301 | |
Alexey Samsonov | cd8535a | 2014-02-19 11:18:47 +0000 | [diff] [blame^] | 302 | if(COMPILER_RT_INCLUDE_TESTS) |
Alexey Samsonov | 81a2b46 | 2014-02-14 11:00:07 +0000 | [diff] [blame] | 303 | add_subdirectory(unittests) |
Chandler Carruth | 1f5d5c0 | 2012-04-04 22:12:04 +0000 | [diff] [blame] | 304 | endif() |
Alexey Samsonov | 9f20d67 | 2014-02-14 14:06:10 +0000 | [diff] [blame] | 305 | add_subdirectory(test) |