blob: 87e1fadb3e27962730c6442cb3db0793836571ff [file] [log] [blame]
Chandler Carruth1f5d5c02012-04-04 22:12:04 +00001# CMake build for CompilerRT.
2#
3# This build assumes that CompilerRT is checked out into the
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +00004# 'projects/compiler-rt' inside of an LLVM tree.
5# Standalone build system for CompilerRT is not yet ready.
Chandler Carruth1f5d5c02012-04-04 22:12:04 +00006#
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 Samsonovde4ef2a2014-02-19 07:49:16 +000010# Check if compiler-rt is built as a standalone project.
11if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
12 project(CompilerRT)
13 set(COMPILER_RT_STANDALONE_BUILD TRUE)
14else()
15 set(COMPILER_RT_STANDALONE_BUILD FALSE)
16endif()
17
Chandler Carruthc78ad002012-06-25 08:40:10 +000018# 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 Wennborga97442f2014-02-11 21:46:19 +000022if (NOT MSVC)
23 cmake_minimum_required(VERSION 2.8.8)
24else()
25 # Version 2.8.12.1 is required to build with Visual Studion 2013.
26 cmake_minimum_required(VERSION 2.8.12.1)
27endif()
28
NAKAMURA Takumi9cd9ad62014-02-26 06:45:11 +000029# FIXME: It may be removed when we use 2.8.12.
30if(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)
34else()
35 # Use ${cmake_2_8_12_KEYWORD} intead of KEYWORD in target_link_libraries().
36 set(cmake_2_8_12_INTERFACE INTERFACE)
37 set(cmake_2_8_12_PRIVATE PRIVATE)
38 if(POLICY CMP0022)
39 cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required
40 endif()
41endif()
42
Alexey Samsonov20abdf62013-10-01 12:52:15 +000043# Top level target used to build all compiler-rt libraries.
Alexey Samsonova2fee5d2014-02-24 11:32:49 +000044add_custom_target(compiler-rt ALL)
Alexey Samsonov20abdf62013-10-01 12:52:15 +000045
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +000046if (NOT COMPILER_RT_STANDALONE_BUILD)
47 # Compute the Clang version from the LLVM version.
48 # FIXME: We should be able to reuse CLANG_VERSION variable calculated
49 # in Clang cmake files, instead of copying the rules here.
50 string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION
51 ${PACKAGE_VERSION})
52 # Setup the paths where compiler-rt runtimes and headers should be stored.
53 set(COMPILER_RT_OUTPUT_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/clang/${CLANG_VERSION})
Evgeniy Stepanov322e89c2014-02-27 08:41:40 +000054 set(COMPILER_RT_EXEC_OUTPUT_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR})
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +000055 set(COMPILER_RT_INSTALL_PATH lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION})
Alexey Samsonovcd8535a2014-02-19 11:18:47 +000056 option(COMPILER_RT_INCLUDE_TESTS "Generate and build compiler-rt unit tests."
57 ${LLVM_INCLUDE_TESTS})
Alexey Samsonov2f27f0b2014-02-24 11:22:39 +000058 option(COMPILER_RT_ENABLE_WERROR "Fail and stop if warning is triggered"
59 ${LLVM_ENABLE_WERROR})
Timur Iskhodzhanovb0279d72014-05-12 08:55:20 +000060 # Use just-built Clang to compile/link tests on all platforms, except for
61 # Windows where we need to use clang-cl instead.
62 if(NOT MSVC)
63 set(COMPILER_RT_TEST_COMPILER ${LLVM_RUNTIME_OUTPUT_INTDIR}/clang)
64 set(COMPILER_RT_TEST_COMPILER_EXE "-o")
65 set(COMPILER_RT_TEST_COMPILER_OBJ "-o")
66 else()
67 set(COMPILER_RT_TEST_COMPILER ${LLVM_RUNTIME_OUTPUT_INTDIR}/clang-cl.exe)
68 set(COMPILER_RT_TEST_COMPILER_EXE "-Fe")
69 set(COMPILER_RT_TEST_COMPILER_OBJ "-Fo")
70 endif()
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +000071else()
72 # Take output dir and install path from the user.
73 set(COMPILER_RT_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE PATH
74 "Path where built compiler-rt libraries should be stored.")
Evgeniy Stepanov322e89c2014-02-27 08:41:40 +000075 set(COMPILER_RT_EXEC_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/bin CACHE PATH
76 "Path where built compiler-rt executables should be stored.")
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +000077 set(COMPILER_RT_INSTALL_PATH ${CMAKE_INSTALL_PREFIX} CACHE PATH
78 "Path where built compiler-rt libraries should be installed.")
Alexey Samsonovcd8535a2014-02-19 11:18:47 +000079 option(COMPILER_RT_INCLUDE_TESTS "Generate and build compiler-rt unit tests." OFF)
Alexey Samsonov2f27f0b2014-02-24 11:22:39 +000080 option(COMPILER_RT_ENABLE_WERROR "Fail and stop if warning is triggered" OFF)
Alexey Samsonov150d62a2014-02-19 13:01:03 +000081 # Use a host compiler to compile/link tests.
Greg Fitzgeraldc7444922014-04-01 21:54:56 +000082 set(COMPILER_RT_TEST_COMPILER ${CMAKE_C_COMPILER} CACHE PATH "Compiler to use for testing")
Alexey Samsonovaa980c72014-02-19 10:04:29 +000083
Alexey Samsonovaa980c72014-02-19 10:04:29 +000084 if (NOT LLVM_CONFIG_PATH)
Alexey Samsonov1464b592014-03-05 09:21:49 +000085 find_program(LLVM_CONFIG_PATH "llvm-config"
86 DOC "Path to llvm-config binary")
Alexey Samsonovaa980c72014-02-19 10:04:29 +000087 if (NOT LLVM_CONFIG_PATH)
88 message(FATAL_ERROR "llvm-config not found: specify LLVM_CONFIG_PATH")
89 endif()
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +000090 endif()
Alexey Samsonovaa980c72014-02-19 10:04:29 +000091 execute_process(
92 COMMAND ${LLVM_CONFIG_PATH} "--obj-root" "--bindir" "--libdir" "--src-root"
93 RESULT_VARIABLE HAD_ERROR
94 OUTPUT_VARIABLE CONFIG_OUTPUT)
95 if (HAD_ERROR)
96 message(FATAL_ERROR "llvm-config failed with status ${HAD_ERROR}")
97 endif()
98 string(REGEX REPLACE "[ \t]*[\r\n]+[ \t]*" ";" CONFIG_OUTPUT ${CONFIG_OUTPUT})
99 list(GET CONFIG_OUTPUT 0 LLVM_BINARY_DIR)
100 list(GET CONFIG_OUTPUT 1 LLVM_TOOLS_BINARY_DIR)
101 list(GET CONFIG_OUTPUT 2 LLVM_LIBRARY_DIR)
102 list(GET CONFIG_OUTPUT 3 LLVM_MAIN_SRC_DIR)
103
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +0000104 # Make use of LLVM CMake modules.
Alexey Samsonovf97f07b2014-03-13 11:55:27 +0000105 file(TO_CMAKE_PATH ${LLVM_BINARY_DIR} LLVM_BINARY_DIR_CMAKE_STYLE)
106 set(LLVM_CMAKE_PATH "${LLVM_BINARY_DIR_CMAKE_STYLE}/share/llvm/cmake")
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +0000107 list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_PATH}")
108 # Get some LLVM variables from LLVMConfig.
109 include("${LLVM_CMAKE_PATH}/LLVMConfig.cmake")
110
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +0000111 set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib)
Alexey Samsonovaa980c72014-02-19 10:04:29 +0000112
113 # Find Python interpreter.
114 set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5)
115 include(FindPythonInterp)
116 if(NOT PYTHONINTERP_FOUND)
117 message(FATAL_ERROR "
118 Unable to find Python interpreter required testing. Please install Python
119 or specify the PYTHON_EXECUTABLE CMake variable.")
120 endif()
121
122 # Define default arguments to lit.
123 set(LIT_ARGS_DEFAULT "-sv")
124 if (MSVC OR XCODE)
125 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
126 endif()
127 set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +0000128endif()
129
Greg Fitzgeraldc7444922014-04-01 21:54:56 +0000130if("${COMPILER_RT_TEST_COMPILER}" MATCHES "clang[+]*$")
131 set(COMPILER_RT_TEST_COMPILER_ID Clang)
132else()
133 set(COMPILER_RT_TEST_COMPILER_ID GNU)
134endif()
135
Alexey Samsonov1181a102014-02-18 14:28:53 +0000136string(TOLOWER ${CMAKE_SYSTEM_NAME} COMPILER_RT_OS_DIR)
Alexey Samsonov1181a102014-02-18 14:28:53 +0000137set(COMPILER_RT_LIBRARY_OUTPUT_DIR
138 ${COMPILER_RT_OUTPUT_DIR}/lib/${COMPILER_RT_OS_DIR})
Alexey Samsonov8c2cd862013-01-20 13:58:10 +0000139set(COMPILER_RT_LIBRARY_INSTALL_DIR
Alexey Samsonov1181a102014-02-18 14:28:53 +0000140 ${COMPILER_RT_INSTALL_PATH}/lib/${COMPILER_RT_OS_DIR})
Alexey Samsonov8c2cd862013-01-20 13:58:10 +0000141
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +0000142# Add path for custom compiler-rt modules.
Alexey Samsonovca7fcf22012-12-19 12:33:39 +0000143set(CMAKE_MODULE_PATH
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000144 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
Alexey Samsonovca7fcf22012-12-19 12:33:39 +0000145 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules"
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000146 ${CMAKE_MODULE_PATH}
Alexey Samsonovca7fcf22012-12-19 12:33:39 +0000147 )
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000148include(CompilerRTUtils)
Alexey Samsonovca7fcf22012-12-19 12:33:39 +0000149
150set(COMPILER_RT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Alexey Samsonov6a65b182013-06-06 12:35:48 +0000151set(COMPILER_RT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
Alexey Samsonov4c17c1b2013-03-19 09:17:35 +0000152# Setup custom SDK sysroots.
153set(COMPILER_RT_DARWIN_SDK_SYSROOT ${COMPILER_RT_SOURCE_DIR}/SDKs/darwin)
154set(COMPILER_RT_LINUX_SDK_SYSROOT ${COMPILER_RT_SOURCE_DIR}/SDKs/linux)
Alexey Samsonovca7fcf22012-12-19 12:33:39 +0000155
Evgeniy Stepanov0b5b3292014-03-18 08:32:14 +0000156set(COMPILER_RT_EXTRA_ANDROID_HEADERS ${COMPILER_RT_SOURCE_DIR}/android/include)
Evgeniy Stepanov6db97e82014-02-10 13:34:43 +0000157
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000158# Detect whether the current target platform is 32-bit or 64-bit, and setup
159# the correct commandline flags needed to attempt to target 32-bit and 64-bit.
Alexey Samsonovdd8872b2013-06-30 16:21:32 +0000160if (NOT CMAKE_SIZEOF_VOID_P EQUAL 4 AND
161 NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
162 message(FATAL_ERROR "Please use architecture with 4 or 8 byte pointers.")
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000163endif()
Hans Wennborg67c6e502013-08-27 01:24:01 +0000164if (NOT MSVC)
165 set(TARGET_64_BIT_CFLAGS "-m64")
166 set(TARGET_32_BIT_CFLAGS "-m32")
167else()
168 set(TARGET_64_BIT_CFLAGS "")
169 set(TARGET_32_BIT_CFLAGS "")
170endif()
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000171
Alexey Samsonovb6700182013-01-21 14:31:45 +0000172# List of architectures we can target.
173set(COMPILER_RT_SUPPORTED_ARCH)
Alexey Samsonov4b0ee8e2013-01-18 13:10:42 +0000174
Alexey Samsonov85bd73d2012-12-19 15:17:23 +0000175function(get_target_flags_for_arch arch out_var)
Alexey Samsonov4b0ee8e2013-01-18 13:10:42 +0000176 list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX)
177 if(ARCH_INDEX EQUAL -1)
Alexey Samsonov85bd73d2012-12-19 15:17:23 +0000178 message(FATAL_ERROR "Unsupported architecture: ${arch}")
Alexey Samsonov4b0ee8e2013-01-18 13:10:42 +0000179 else()
180 set(${out_var} ${TARGET_${arch}_CFLAGS} PARENT_SCOPE)
Alexey Samsonov85bd73d2012-12-19 15:17:23 +0000181 endif()
182endfunction()
183
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000184# Try to compile a very simple source file to ensure we can target the given
185# platform. We use the results of these tests to build only the various target
186# runtime libraries supported by our current compilers cross-compiling
187# abilities.
Evgeniy Stepanovff127bf2014-03-31 13:50:13 +0000188set(SIMPLE_SOURCE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/simple.cc)
189file(WRITE ${SIMPLE_SOURCE} "#include <stdlib.h>\n#include <limits>\nint main() {}\n")
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000190
Alexey Samsonovb6700182013-01-21 14:31:45 +0000191# test_target_arch(<arch> <target flags...>)
192# Sets the target flags for a given architecture and determines if this
193# architecture is supported by trying to build a simple file.
194macro(test_target_arch arch)
195 set(TARGET_${arch}_CFLAGS ${ARGN})
196 try_compile(CAN_TARGET_${arch} ${CMAKE_BINARY_DIR} ${SIMPLE_SOURCE}
197 COMPILE_DEFINITIONS "${TARGET_${arch}_CFLAGS}"
198 CMAKE_FLAGS "-DCMAKE_EXE_LINKER_FLAGS:STRING=${TARGET_${arch}_CFLAGS}")
199 if(${CAN_TARGET_${arch}})
200 list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
201 endif()
202endmacro()
203
Evgeniy Stepanovaa9d74c2014-02-14 09:22:10 +0000204if(ANDROID_COMMON_FLAGS)
205 test_target_arch(arm_android "${ANDROID_COMMON_FLAGS}")
206else()
207 if("${LLVM_NATIVE_ARCH}" STREQUAL "X86")
208 if (NOT MSVC)
209 test_target_arch(x86_64 ${TARGET_64_BIT_CFLAGS})
210 endif()
211 test_target_arch(i386 ${TARGET_32_BIT_CFLAGS})
212 elseif("${LLVM_NATIVE_ARCH}" STREQUAL "PowerPC")
213 test_target_arch(powerpc64 ${TARGET_64_BIT_CFLAGS})
214 elseif("${LLVM_NATIVE_ARCH}" STREQUAL "ARM")
215 test_target_arch(arm "")
Hans Wennborg67c6e502013-08-27 01:24:01 +0000216 endif()
Alexey Samsonovb6700182013-01-21 14:31:45 +0000217endif()
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000218
Alexey Samsonovc20f5d22012-12-27 13:19:23 +0000219# We only support running instrumented tests when we're not cross compiling
Evgeniy Stepanovaa9d74c2014-02-14 09:22:10 +0000220# and target a unix-like system. We can run tests on Android even when we are
221# cross-compiling.
222if(("${CMAKE_HOST_SYSTEM}" STREQUAL "${CMAKE_SYSTEM}" AND UNIX) OR ANDROID)
Michael Gottesman4ddc2152013-04-01 04:13:03 +0000223 option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" ON)
Alexey Samsonovc20f5d22012-12-27 13:19:23 +0000224else()
Michael Gottesman4ddc2152013-04-01 04:13:03 +0000225 option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" OFF)
Alexey Samsonovc20f5d22012-12-27 13:19:23 +0000226endif()
Michael Gottesman4ddc2152013-04-01 04:13:03 +0000227
Alexey Samsonov5cb78602013-02-08 07:39:25 +0000228# Check if compiler-rt is built with libc++.
229find_flag_in_string("${CMAKE_CXX_FLAGS}" "-stdlib=libc++"
230 COMPILER_RT_USES_LIBCXX)
231
Alexey Samsonovfb844c72012-08-10 14:45:52 +0000232function(filter_available_targets out_var)
233 set(archs)
234 foreach(arch ${ARGN})
Alexey Samsonov4b0ee8e2013-01-18 13:10:42 +0000235 list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX)
236 if(NOT (ARCH_INDEX EQUAL -1) AND CAN_TARGET_${arch})
Alexey Samsonovfb844c72012-08-10 14:45:52 +0000237 list(APPEND archs ${arch})
238 endif()
239 endforeach()
240 set(${out_var} ${archs} PARENT_SCOPE)
241endfunction()
242
Peter Collingbournecbdea322013-10-25 23:03:34 +0000243option(COMPILER_RT_DEBUG "Build runtimes with full debug info" OFF)
Peter Collingbournecbdea322013-10-25 23:03:34 +0000244# COMPILER_RT_DEBUG_PYBOOL is used by lit.common.configured.in.
245pythonize_bool(COMPILER_RT_DEBUG)
246
Alexey Samsonov56b6ee92014-04-01 13:16:30 +0000247option(COMPILER_RT_BUILD_SHARED_ASAN "Build shared version of AddressSanitizer runtime" OFF)
248
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000249#================================
250# Setup Compiler Flags
251#================================
252include(config-ix)
253
Alexey Samsonovfe7e28c2014-03-13 11:31:10 +0000254if(MSVC)
255 append_string_if(COMPILER_RT_HAS_W3_FLAG /W3 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
256else()
257 append_string_if(COMPILER_RT_HAS_WALL_FLAG -Wall CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
258endif()
Alexey Samsonov2f27f0b2014-02-24 11:22:39 +0000259if(COMPILER_RT_ENABLE_WERROR)
Alexey Samsonovfe7e28c2014-03-13 11:31:10 +0000260 append_string_if(COMPILER_RT_HAS_WERROR_FLAG -Werror CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
261 append_string_if(COMPILER_RT_HAS_WX_FLAG /WX CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov2f27f0b2014-02-24 11:22:39 +0000262endif()
263
Alexey Samsonovbcce1972014-03-18 12:49:22 +0000264append_string_if(COMPILER_RT_HAS_STD_CXX11_FLAG -std=c++11 CMAKE_CXX_FLAGS)
265
Reid Kleckner0140ce42014-02-26 21:54:39 +0000266# Emulate C99 and C++11's __func__ for MSVC prior to 2013 CTP.
Alexey Samsonove3e2a112014-02-27 06:52:41 +0000267if(NOT COMPILER_RT_HAS_FUNC_SYMBOL)
Alexey Samsonov8c4c0972014-02-27 07:03:32 +0000268 add_definitions(-D__func__=__FUNCTION__)
Reid Kleckner0140ce42014-02-26 21:54:39 +0000269endif()
270
Chandler Carruthc1c9d582012-08-29 00:13:11 +0000271# Provide some common commmandline flags for Sanitizer runtimes.
Alexey Samsonov32956d62014-03-13 09:31:36 +0000272append_if(COMPILER_RT_HAS_FPIC_FLAG -fPIC SANITIZER_COMMON_CFLAGS)
273append_if(COMPILER_RT_HAS_FNO_BUILTIN_FLAG -fno-builtin SANITIZER_COMMON_CFLAGS)
274append_if(COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG -fno-exceptions SANITIZER_COMMON_CFLAGS)
275append_if(COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG -fomit-frame-pointer SANITIZER_COMMON_CFLAGS)
276append_if(COMPILER_RT_HAS_FUNWIND_TABLES_FLAG -funwind-tables SANITIZER_COMMON_CFLAGS)
277append_if(COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG -fno-stack-protector SANITIZER_COMMON_CFLAGS)
278append_if(COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG -fvisibility=hidden SANITIZER_COMMON_CFLAGS)
279append_if(COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG -fno-function-sections SANITIZER_COMMON_CFLAGS)
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000280
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000281if(MSVC)
282 # Remove /MD flag so that it doesn't conflict with /MT.
283 if(COMPILER_RT_HAS_MT_FLAG)
Alexey Samsonovcbc68522014-03-13 13:37:07 +0000284 string(REGEX REPLACE "(^| ) */MDd? *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000285 list(APPEND SANITIZER_COMMON_CFLAGS /MT)
286 endif()
Alexey Samsonov32956d62014-03-13 09:31:36 +0000287 append_if(COMPILER_RT_HAS_Oy_FLAG /Oy- SANITIZER_COMMON_CFLAGS)
288 append_if(COMPILER_RT_HAS_GS_FLAG /GS- SANITIZER_COMMON_CFLAGS)
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000289endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000290
Alexey Samsonovcbc68522014-03-13 13:37:07 +0000291# Build with optimization, unless we're in debug mode. If we're using MSVC,
292# always respect the optimization flags set by CMAKE_BUILD_TYPE instead.
293if(NOT COMPILER_RT_DEBUG AND NOT MSVC)
294 list(APPEND SANITIZER_COMMON_CFLAGS -O3)
Hans Wennborg67c6e502013-08-27 01:24:01 +0000295endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000296
297# Build sanitizer runtimes with debug info.
298if(COMPILER_RT_HAS_GLINE_TABLES_ONLY_FLAG)
299 list(APPEND SANITIZER_COMMON_CFLAGS -gline-tables-only)
300elseif(COMPILER_RT_HAS_G_FLAG)
301 list(APPEND SANITIZER_COMMON_CFLAGS -g)
302elseif(COMPILER_RT_HAS_Zi_FLAG)
303 list(APPEND SANITIZER_COMMON_CFLAGS /Zi)
Alexey Samsonov75fb6772012-11-08 14:49:28 +0000304endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000305
306# Turn off several warnings.
Alexey Samsonov32956d62014-03-13 09:31:36 +0000307append_if(COMPILER_RT_HAS_WNO_GNU_FLAG -Wno-gnu SANITIZER_COMMON_CFLAGS)
308append_if(COMPILER_RT_HAS_WNO_VARIADIC_MACROS_FLAG -Wno-variadic-macros SANITIZER_COMMON_CFLAGS)
309append_if(COMPILER_RT_HAS_WNO_C99_EXTENSIONS_FLAG -Wno-c99-extensions SANITIZER_COMMON_CFLAGS)
310append_if(COMPILER_RT_HAS_WNO_NON_VIRTUAL_DTOR_FLAG -Wno-non-virtual-dtor SANITIZER_COMMON_CFLAGS)
311append_if(COMPILER_RT_HAS_WD4722_FLAG /wd4722 SANITIZER_COMMON_CFLAGS)
Alexey Samsonov5cb78602013-02-08 07:39:25 +0000312
Alexey Samsonovd83ccd02012-09-05 09:00:03 +0000313if(APPLE)
Alexander Potapenko49034e32013-11-07 10:08:19 +0000314 # Obtain the iOS Simulator SDK path from xcodebuild.
315 execute_process(
316 COMMAND xcodebuild -version -sdk iphonesimulator Path
317 OUTPUT_VARIABLE IOSSIM_SDK_DIR
318 OUTPUT_STRIP_TRAILING_WHITESPACE
319 )
Alexey Samsonov1dbe6e02014-02-18 12:01:24 +0000320 string(REGEX MATCH "-mmacosx-version-min="
321 MACOSX_VERSION_MIN_FLAG "${CMAKE_CXX_FLAGS}")
Alexander Potapenko49034e32013-11-07 10:08:19 +0000322 set(SANITIZER_COMMON_SUPPORTED_DARWIN_OS osx)
Alexey Samsonov1dbe6e02014-02-18 12:01:24 +0000323 if (IOSSIM_SDK_DIR AND NOT MACOSX_VERSION_MIN_FLAG)
Alexander Potapenko49034e32013-11-07 10:08:19 +0000324 list(APPEND SANITIZER_COMMON_SUPPORTED_DARWIN_OS iossim)
325 endif()
326
Alexey Samsonov5cb78602013-02-08 07:39:25 +0000327 if(COMPILER_RT_USES_LIBCXX)
328 set(SANITIZER_MIN_OSX_VERSION 10.7)
329 else()
Alexey Samsonoveb797322013-07-16 11:54:40 +0000330 set(SANITIZER_MIN_OSX_VERSION 10.6)
Alexey Samsonov5cb78602013-02-08 07:39:25 +0000331 endif()
Alexander Potapenko49034e32013-11-07 10:08:19 +0000332 set(DARWIN_osx_CFLAGS -mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION})
333 set(DARWIN_iossim_CFLAGS
334 -mios-simulator-version-min=7.0 -isysroot ${IOSSIM_SDK_DIR})
335 set(DARWIN_osx_LINKFLAGS)
336 set(DARWIN_iossim_LINKFLAGS
337 -Wl,-ios_simulator_version_min,7.0.0
338 -mios-simulator-version-min=7.0
Alexander Potapenko2b002892013-11-19 14:58:42 +0000339 -isysroot ${IOSSIM_SDK_DIR})
Alexey Samsonovd83ccd02012-09-05 09:00:03 +0000340endif()
Chandler Carruthc1c9d582012-08-29 00:13:11 +0000341
Alexey Samsonovb0684832013-01-18 16:51:07 +0000342# Architectures supported by Sanitizer runtimes. Specific sanitizers may
343# support only subset of these (e.g. TSan works on x86_64 only).
344filter_available_targets(SANITIZER_COMMON_SUPPORTED_ARCH
Renato Golin66e2b702014-01-31 14:25:58 +0000345 x86_64 i386 powerpc64 arm)
Alexey Samsonov9f20d672014-02-14 14:06:10 +0000346filter_available_targets(ASAN_SUPPORTED_ARCH x86_64 i386 powerpc64)
Alexey Samsonovf6cf6ab2014-02-14 12:05:41 +0000347filter_available_targets(DFSAN_SUPPORTED_ARCH x86_64)
Alexey Samsonov7eeef852014-02-14 12:26:05 +0000348filter_available_targets(LSAN_SUPPORTED_ARCH x86_64)
Alexey Samsonov8434e602014-02-14 13:02:58 +0000349filter_available_targets(MSAN_SUPPORTED_ARCH x86_64)
Duncan P. N. Exon Smithae2f0bb2014-03-31 22:45:37 +0000350filter_available_targets(PROFILE_SUPPORTED_ARCH x86_64 i386 arm)
Alexey Samsonove6a61832014-02-14 14:35:48 +0000351filter_available_targets(TSAN_SUPPORTED_ARCH x86_64)
Alexey Samsonovf6cf6ab2014-02-14 12:05:41 +0000352filter_available_targets(UBSAN_SUPPORTED_ARCH x86_64 i386)
Alexey Samsonovb0684832013-01-18 16:51:07 +0000353
Alexey Samsonov9f3938e2013-04-11 15:49:52 +0000354add_subdirectory(include)
355
Alexey Samsonov8434e602014-02-14 13:02:58 +0000356set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/projects/libcxx)
357if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/)
358 set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE)
359else()
360 set(COMPILER_RT_HAS_LIBCXX_SOURCES FALSE)
361endif()
362
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000363add_subdirectory(lib)
364
Alexey Samsonovcd8535a2014-02-19 11:18:47 +0000365if(COMPILER_RT_INCLUDE_TESTS)
Alexey Samsonov81a2b462014-02-14 11:00:07 +0000366 add_subdirectory(unittests)
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000367endif()
Alexey Samsonov9f20d672014-02-14 14:06:10 +0000368add_subdirectory(test)