blob: 5f277e0db0cefcbc102b9cfb62c791e5a8b90fcc [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
Jonas Hahnfeldddbab7d2016-08-19 06:46:00 +00004# 'projects/compiler-rt' or 'runtimes/compiler-rt' inside of an LLVM tree.
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +00005# 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
Pirama Arumuga Nainar31b825d2017-06-16 21:14:45 +000010cmake_minimum_required(VERSION 3.4.3)
11
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +000012# Check if compiler-rt is built as a standalone project.
Jonas Hahnfeldddbab7d2016-08-19 06:46:00 +000013if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR OR COMPILER_RT_STANDALONE_BUILD)
Douglas Katzmanc4ffd482015-07-28 16:52:42 +000014 project(CompilerRT C CXX ASM)
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +000015 set(COMPILER_RT_STANDALONE_BUILD TRUE)
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +000016endif()
17
Chris Bienemanc49e5e32016-05-09 21:45:52 +000018# Add path for custom compiler-rt modules.
19list(INSERT CMAKE_MODULE_PATH 0
20 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
21 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules"
22 )
23
George Karpenkov50dd3fe2017-07-28 00:50:56 +000024if(CMAKE_CONFIGURATION_TYPES)
25 set(CMAKE_CFG_RESOLVED_INTDIR "${CMAKE_CFG_INTDIR}/")
26else()
27 set(CMAKE_CFG_RESOLVED_INTDIR "")
28endif()
29
Chris Bienemanc49e5e32016-05-09 21:45:52 +000030include(base-config-ix)
Jonas Hahnfeld9b2c3ab2016-08-02 05:51:05 +000031include(CompilerRTUtils)
Alexey Samsonov20abdf62013-10-01 12:52:15 +000032
Chris Bieneman679ab852015-09-14 19:59:24 +000033option(COMPILER_RT_BUILD_BUILTINS "Build builtins" ON)
34mark_as_advanced(COMPILER_RT_BUILD_BUILTINS)
35option(COMPILER_RT_BUILD_SANITIZERS "Build sanitizers" ON)
36mark_as_advanced(COMPILER_RT_BUILD_SANITIZERS)
Dean Michael Berris6af0a6b2016-08-08 03:58:57 +000037option(COMPILER_RT_BUILD_XRAY "Build xray" ON)
Dean Michael Berris938c5032016-07-21 07:39:55 +000038mark_as_advanced(COMPILER_RT_BUILD_XRAY)
Dean Michael Berris449fdf82017-08-03 00:58:45 +000039option(COMPILER_RT_BUILD_XRAY_NO_PREINIT "Build xray with no preinit patching" OFF)
40mark_as_advanced(COMPILER_RT_BUILD_XRAY_NO_PREINIT)
Chris Bieneman679ab852015-09-14 19:59:24 +000041
Catherine Moore61efa172017-05-10 15:34:25 +000042set(COMPILER_RT_BAREMETAL_BUILD OFF CACHE BOOLEAN
43 "Build for a bare-metal target.")
44
Chris Bienemanc49e5e32016-05-09 21:45:52 +000045if (COMPILER_RT_STANDALONE_BUILD)
Jonas Hahnfeld9b2c3ab2016-08-02 05:51:05 +000046 load_llvm_config()
Alexey Samsonovaa980c72014-02-19 10:04:29 +000047
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 Samsonovde4ef2a2014-02-19 07:49:16 +000063endif()
64
Jonas Hahnfeld9b2c3ab2016-08-02 05:51:05 +000065construct_compiler_rt_default_triple()
Chris Bieneman990ff382016-06-27 22:52:05 +000066if ("${COMPILER_RT_DEFAULT_TARGET_ABI}" STREQUAL "androideabi")
67 set(ANDROID 1)
68endif()
Alexey Samsonovca7fcf22012-12-19 12:33:39 +000069
70set(COMPILER_RT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Alexey Samsonov6a65b182013-06-06 12:35:48 +000071set(COMPILER_RT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
Alexey Samsonovca7fcf22012-12-19 12:33:39 +000072
Timur Iskhodzhanovb9bd76b2014-05-13 14:25:49 +000073# 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 Klecknerfbfed862015-07-17 16:23:05 +000076if(("${CMAKE_HOST_SYSTEM}" STREQUAL "${CMAKE_SYSTEM}" AND (UNIX OR WIN32)) OR ANDROID
Greg Fitzgerald07c88a12014-05-14 00:36:15 +000077 OR COMPILER_RT_EMULATOR)
Michael Gottesman4ddc2152013-04-01 04:13:03 +000078 option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" ON)
Alexey Samsonovc20f5d22012-12-27 13:19:23 +000079else()
Michael Gottesman4ddc2152013-04-01 04:13:03 +000080 option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" OFF)
Alexey Samsonovc20f5d22012-12-27 13:19:23 +000081endif()
Michael Gottesman4ddc2152013-04-01 04:13:03 +000082
Peter Collingbournecbdea322013-10-25 23:03:34 +000083option(COMPILER_RT_DEBUG "Build runtimes with full debug info" OFF)
Chris Bieneman69a372d2015-12-03 20:08:22 +000084option(COMPILER_RT_EXTERNALIZE_DEBUGINFO
85 "Generate dSYM files and strip executables and libraries (Darwin Only)" OFF)
Peter Collingbournecbdea322013-10-25 23:03:34 +000086# COMPILER_RT_DEBUG_PYBOOL is used by lit.common.configured.in.
87pythonize_bool(COMPILER_RT_DEBUG)
88
Petr Hosek2bbb6ad2017-07-28 03:39:38 +000089include(HandleCompilerRT)
Vedant Kumarcb7110b2016-10-06 16:45:40 +000090include(config-ix)
91
Kuba Mracek5c2e3e22017-07-07 22:40:13 +000092if(APPLE AND SANITIZER_MIN_OSX_VERSION AND SANITIZER_MIN_OSX_VERSION VERSION_LESS "10.9")
Francis Ricci9cf5e4f2016-08-22 18:31:37 +000093 # Mac OS X prior to 10.9 had problems with exporting symbols from
94 # libc++/libc++abi.
95 set(use_cxxabi_default OFF)
96elseif(MSVC)
97 set(use_cxxabi_default OFF)
98else()
99 set(use_cxxabi_default ON)
100endif()
101
102option(SANITIZER_CAN_USE_CXXABI "Sanitizers can use cxxabi" ${use_cxxabi_default})
103pythonize_bool(SANITIZER_CAN_USE_CXXABI)
104
Petr Hoseka7a9ca42017-07-28 03:39:39 +0000105set(SANITIZER_CXX_ABI "default" CACHE STRING
106 "Specify C++ ABI library to use.")
107set(CXXABIS none default libcxxabi libstdc++)
108set_property(CACHE SANITIZER_CXX_ABI PROPERTY STRINGS ;${CXXABIS})
109
110if (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()
120elseif()
121 set(SANITIZER_CXX_ABI_LIBNAME "${SANITIZER_CXX_ABI}")
122endif()
123
124if (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()
135elseif (SANITIZER_CXX_ABI_LIBNAME STREQUAL "libstdc++")
136 append_list_if(COMPILER_RT_HAS_LIBSTDCXX stdc++ SANITIZER_CXX_ABI_LIBRARY)
137endif()
138
Petr Hosek2bbb6ad2017-07-28 03:39:38 +0000139option(SANITIZER_USE_COMPILER_RT "Use compiler-rt builtins instead of libgcc" OFF)
140
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000141#================================
142# Setup Compiler Flags
143#================================
Saleem Abdulrasoola7452e42015-01-14 15:55:17 +0000144
Alexey Samsonovfe7e28c2014-03-13 11:31:10 +0000145if(MSVC)
Reid Klecknerd0680ad2016-06-17 17:48:52 +0000146 # 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 Samsonovfe7e28c2014-03-13 11:31:10 +0000154else()
155 append_string_if(COMPILER_RT_HAS_WALL_FLAG -Wall CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
156endif()
Alexey Samsonov2f27f0b2014-02-24 11:22:39 +0000157if(COMPILER_RT_ENABLE_WERROR)
Alexey Samsonovfe7e28c2014-03-13 11:31:10 +0000158 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 Samsonov2f27f0b2014-02-24 11:22:39 +0000160endif()
161
Alexey Samsonovbcce1972014-03-18 12:49:22 +0000162append_string_if(COMPILER_RT_HAS_STD_CXX11_FLAG -std=c++11 CMAKE_CXX_FLAGS)
163
Reid Kleckner0140ce42014-02-26 21:54:39 +0000164# Emulate C99 and C++11's __func__ for MSVC prior to 2013 CTP.
Alexey Samsonove3e2a112014-02-27 06:52:41 +0000165if(NOT COMPILER_RT_HAS_FUNC_SYMBOL)
Alexey Samsonov8c4c0972014-02-27 07:03:32 +0000166 add_definitions(-D__func__=__FUNCTION__)
Reid Kleckner0140ce42014-02-26 21:54:39 +0000167endif()
168
Chandler Carruthc1c9d582012-08-29 00:13:11 +0000169# Provide some common commmandline flags for Sanitizer runtimes.
Francis Ricci0b6f4872016-09-08 15:57:22 +0000170if(NOT WIN32)
171 append_list_if(COMPILER_RT_HAS_FPIC_FLAG -fPIC SANITIZER_COMMON_CFLAGS)
172endif()
Kuba Brecka14c0c592014-10-15 22:47:54 +0000173append_list_if(COMPILER_RT_HAS_FNO_BUILTIN_FLAG -fno-builtin SANITIZER_COMMON_CFLAGS)
174append_list_if(COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG -fno-exceptions SANITIZER_COMMON_CFLAGS)
Kuba Mracek90caf892017-03-27 17:14:48 +0000175if(NOT COMPILER_RT_DEBUG AND NOT APPLE)
Kuba Brecka83460cf2016-05-22 19:59:06 +0000176 append_list_if(COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG -fomit-frame-pointer SANITIZER_COMMON_CFLAGS)
177endif()
Kuba Brecka14c0c592014-10-15 22:47:54 +0000178append_list_if(COMPILER_RT_HAS_FUNWIND_TABLES_FLAG -funwind-tables SANITIZER_COMMON_CFLAGS)
179append_list_if(COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG -fno-stack-protector SANITIZER_COMMON_CFLAGS)
Peter Collingbourneb64d0b12015-06-15 21:08:47 +0000180append_list_if(COMPILER_RT_HAS_FNO_SANITIZE_SAFE_STACK_FLAG -fno-sanitize=safe-stack SANITIZER_COMMON_CFLAGS)
Kuba Brecka14c0c592014-10-15 22:47:54 +0000181append_list_if(COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG -fvisibility=hidden SANITIZER_COMMON_CFLAGS)
Chris Bieneman9586a382015-11-30 19:16:42 +0000182append_list_if(COMPILER_RT_HAS_FVISIBILITY_INLINES_HIDDEN_FLAG -fvisibility-inlines-hidden SANITIZER_COMMON_CFLAGS)
Evgeniy Stepanov8c9a0702015-01-15 16:31:22 +0000183append_list_if(COMPILER_RT_HAS_FNO_LTO_FLAG -fno-lto SANITIZER_COMMON_CFLAGS)
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000184
Kostya Kortchinsky2282ede2017-01-30 22:31:49 +0000185# 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'.
189if(DEFINED TARGET_powerpc64le_CFLAGS)
190 append_list_if(COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG -fno-function-sections TARGET_powerpc64le_CFLAGS)
191endif()
192
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000193if(MSVC)
Peter Collingbourne702548d2015-07-08 22:10:34 +0000194 # Replace the /M[DT][d] flags with /MT, and strip any definitions of _DEBUG,
195 # which cause definition mismatches at link time.
Timur Iskhodzhanovde1718d2014-08-12 09:44:56 +0000196 # FIXME: In fact, sanitizers should support both /MT and /MD, see PR20214.
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000197 if(COMPILER_RT_HAS_MT_FLAG)
Aaron Ballman7c7be2f2014-10-23 20:24:00 +0000198 foreach(flag_var
Andrey Turetskiybc0122b2016-02-20 12:56:04 +0000199 CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE
200 CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO
Aaron Ballman7c7be2f2014-10-23 20:24:00 +0000201 CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE
202 CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO)
Peter Collingbourne702548d2015-07-08 22:10:34 +0000203 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 Ballman7c7be2f2014-10-23 20:24:00 +0000206 endforeach()
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000207 endif()
Kuba Brecka14c0c592014-10-15 22:47:54 +0000208 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 Kleckner21aca482016-03-21 20:08:59 +0000210 # 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 Klecknerf6d54752016-07-21 20:03:37 +0000213 if (MSVC_VERSION GREATER 1899 OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
Reid Kleckner21aca482016-03-21 20:08:59 +0000214 list(APPEND SANITIZER_COMMON_CFLAGS /Zc:threadSafeInit-)
215 endif()
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000216endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000217
Alexey Samsonovea040322015-01-06 20:25:34 +0000218append_list_if(COMPILER_RT_DEBUG -DSANITIZER_DEBUG=1 SANITIZER_COMMON_CFLAGS)
Alexey Samsonovdf3aeb82015-01-03 04:29:12 +0000219
George Karpenkove89d0a82017-07-15 00:30:46 +0000220# If we're using MSVC,
Alexey Samsonovcbc68522014-03-13 13:37:07 +0000221# always respect the optimization flags set by CMAKE_BUILD_TYPE instead.
George Karpenkove89d0a82017-07-15 00:30:46 +0000222if (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 Wennborg67c6e502013-08-27 01:24:01 +0000230endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000231
Alexey Samsonovdf3aeb82015-01-03 04:29:12 +0000232# Determine if we should restrict stack frame sizes.
Dmitry Vyukov4bf08942015-04-10 09:45:22 +0000233# Stack frames on PowerPC and Mips and in debug biuld can be much larger than
Alexey Samsonovdf3aeb82015-01-03 04:29:12 +0000234# anticipated.
235# FIXME: Fix all sanitizers and add -Wframe-larger-than to
236# SANITIZER_COMMON_FLAGS
237if(COMPILER_RT_HAS_WFRAME_LARGER_THAN_FLAG AND NOT COMPILER_RT_DEBUG
Alexey Samsonov63eaeca2015-09-08 23:13:47 +0000238 AND NOT ${COMPILER_RT_DEFAULT_TARGET_ARCH} MATCHES "powerpc|mips")
Alexey Samsonovdf3aeb82015-01-03 04:29:12 +0000239 set(SANITIZER_LIMIT_FRAME_SIZE TRUE)
240else()
241 set(SANITIZER_LIMIT_FRAME_SIZE FALSE)
242endif()
243
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000244# Build sanitizer runtimes with debug info.
Kuba Brecka5238deb2014-12-23 01:52:53 +0000245if(COMPILER_RT_HAS_GLINE_TABLES_ONLY_FLAG AND NOT COMPILER_RT_DEBUG)
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000246 list(APPEND SANITIZER_COMMON_CFLAGS -gline-tables-only)
247elseif(COMPILER_RT_HAS_G_FLAG)
248 list(APPEND SANITIZER_COMMON_CFLAGS -g)
Reid Kleckner1734b972016-08-02 01:02:46 +0000249elseif(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 Samsonov75fb6772012-11-08 14:49:28 +0000257endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000258
Kuba Breckaab61c742016-10-08 09:01:27 +0000259if(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)
263endif()
264
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000265# Turn off several warnings.
Alexey Samsonov829da452014-11-13 21:19:53 +0000266append_list_if(COMPILER_RT_HAS_WGNU_FLAG -Wno-gnu SANITIZER_COMMON_CFLAGS)
267append_list_if(COMPILER_RT_HAS_WVARIADIC_MACROS_FLAG -Wno-variadic-macros SANITIZER_COMMON_CFLAGS)
268append_list_if(COMPILER_RT_HAS_WC99_EXTENSIONS_FLAG -Wno-c99-extensions SANITIZER_COMMON_CFLAGS)
269append_list_if(COMPILER_RT_HAS_WNON_VIRTUAL_DTOR_FLAG -Wno-non-virtual-dtor SANITIZER_COMMON_CFLAGS)
Aaron Ballman1d1f2322014-10-23 20:39:58 +0000270append_list_if(COMPILER_RT_HAS_WD4146_FLAG /wd4146 SANITIZER_COMMON_CFLAGS)
271append_list_if(COMPILER_RT_HAS_WD4291_FLAG /wd4291 SANITIZER_COMMON_CFLAGS)
Kuba Brecka14c0c592014-10-15 22:47:54 +0000272append_list_if(COMPILER_RT_HAS_WD4391_FLAG /wd4391 SANITIZER_COMMON_CFLAGS)
273append_list_if(COMPILER_RT_HAS_WD4722_FLAG /wd4722 SANITIZER_COMMON_CFLAGS)
Aaron Ballman1d1f2322014-10-23 20:39:58 +0000274append_list_if(COMPILER_RT_HAS_WD4800_FLAG /wd4800 SANITIZER_COMMON_CFLAGS)
Chandler Carruthc1c9d582012-08-29 00:13:11 +0000275
Petr Hosek2bbb6ad2017-07-28 03:39:38 +0000276# Set common link flags.
277append_list_if(COMPILER_RT_HAS_NODEFAULTLIBS_FLAG -nodefaultlibs SANITIZER_COMMON_LINK_FLAGS)
278
279if (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})
283else()
Petr Hoseka14a2cc2017-07-31 22:46:43 +0000284 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 Hosek2bbb6ad2017-07-28 03:39:38 +0000289endif()
290
291append_list_if(COMPILER_RT_HAS_LIBC c SANITIZER_COMMON_LINK_LIBS)
292
Vitaly Buka5d960ec2017-08-01 22:22:25 +0000293if("${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)
296endif()
297
Reid Kleckner44e6e362016-06-17 18:30:37 +0000298# Warnings to turn off for all libraries, not just sanitizers.
299append_string_if(COMPILER_RT_HAS_WUNUSED_PARAMETER_FLAG -Wno-unused-parameter CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
300
Bob Haarmanf51b0d52017-01-04 21:40:00 +0000301if (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)
310endif()
311
Alexey Samsonov9f3938e2013-04-11 15:49:52 +0000312add_subdirectory(include)
313
Reid Klecknerb5093182015-08-11 17:22:06 +0000314set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/projects/libcxx)
Alexey Samsonov8434e602014-02-14 13:02:58 +0000315if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/)
316 set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE)
317else()
Reid Klecknere2328eb2017-05-09 15:54:57 +0000318 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 Samsonov8434e602014-02-14 13:02:58 +0000324endif()
325
Reid Klecknerc1cd8dd2015-08-11 18:43:13 +0000326set(COMPILER_RT_LLD_PATH ${LLVM_MAIN_SRC_DIR}/tools/lld)
Evgeniy Stepanov656bc5b2017-03-25 00:42:25 +0000327if(EXISTS ${COMPILER_RT_LLD_PATH}/ AND LLVM_TOOL_LLD_BUILD)
328 set(COMPILER_RT_HAS_LLD TRUE)
Reid Kleckner45ebaf12015-08-11 00:33:07 +0000329else()
Reid Klecknere2328eb2017-05-09 15:54:57 +0000330 set(COMPILER_RT_LLD_PATH ${LLVM_MAIN_SRC_DIR}/../lld)
Tim Northoverada04352017-06-05 15:10:04 +0000331 if(EXISTS ${COMPILER_RT_LLD_PATH}/ AND LLVM_TOOL_LLD_BUILD)
Reid Klecknere2328eb2017-05-09 15:54:57 +0000332 set(COMPILER_RT_HAS_LLD TRUE)
333 else()
334 set(COMPILER_RT_HAS_LLD FALSE)
335 endif()
Reid Kleckner45ebaf12015-08-11 00:33:07 +0000336endif()
Evgeniy Stepanov656bc5b2017-03-25 00:42:25 +0000337pythonize_bool(COMPILER_RT_HAS_LLD)
Reid Kleckner45ebaf12015-08-11 00:33:07 +0000338
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000339add_subdirectory(lib)
340
Alexey Samsonovcd8535a2014-02-19 11:18:47 +0000341if(COMPILER_RT_INCLUDE_TESTS)
Alexey Samsonov81a2b462014-02-14 11:00:07 +0000342 add_subdirectory(unittests)
Chris Bienemanfb92d9a2015-09-14 19:54:12 +0000343 add_subdirectory(test)
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000344endif()