blob: e3e5627e8b084a136e823039d8bb62e5cbba1f56 [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.")
Evgeniy Stepanovb52b1412017-08-14 20:42:43 +0000107set(CXXABIS none default libcxxabi libstdc++ libc++)
Petr Hoseka7a9ca42017-07-28 03:39:39 +0000108set_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()
Evgeniy Stepanovb52b1412017-08-14 20:42:43 +0000120else()
Petr Hoseka7a9ca42017-07-28 03:39:39 +0000121 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()
Evgeniy Stepanov3072b532017-08-11 22:28:02 +0000135elseif (SANITIZER_CXX_ABI_LIBNAME STREQUAL "libc++")
136 list(APPEND SANITIZER_CXX_ABI_LIBRARY "c++")
Petr Hoseka7a9ca42017-07-28 03:39:39 +0000137elseif (SANITIZER_CXX_ABI_LIBNAME STREQUAL "libstdc++")
138 append_list_if(COMPILER_RT_HAS_LIBSTDCXX stdc++ SANITIZER_CXX_ABI_LIBRARY)
139endif()
140
Petr Hosek2bbb6ad2017-07-28 03:39:38 +0000141option(SANITIZER_USE_COMPILER_RT "Use compiler-rt builtins instead of libgcc" OFF)
142
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000143#================================
144# Setup Compiler Flags
145#================================
Saleem Abdulrasoola7452e42015-01-14 15:55:17 +0000146
Alexey Samsonovfe7e28c2014-03-13 11:31:10 +0000147if(MSVC)
Reid Klecknerd0680ad2016-06-17 17:48:52 +0000148 # Override any existing /W flags with /W4. This is what LLVM does. Failing to
149 # remove other /W[0-4] flags will result in a warning about overriding a
150 # previous flag.
151 if (COMPILER_RT_HAS_W4_FLAG)
152 string(REGEX REPLACE " /W[0-4]" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
153 string(REGEX REPLACE " /W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
154 append_string_if(COMPILER_RT_HAS_W4_FLAG /W4 CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
155 endif()
Alexey Samsonovfe7e28c2014-03-13 11:31:10 +0000156else()
157 append_string_if(COMPILER_RT_HAS_WALL_FLAG -Wall CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
158endif()
Alexey Samsonov2f27f0b2014-02-24 11:22:39 +0000159if(COMPILER_RT_ENABLE_WERROR)
Alexey Samsonovfe7e28c2014-03-13 11:31:10 +0000160 append_string_if(COMPILER_RT_HAS_WERROR_FLAG -Werror CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
161 append_string_if(COMPILER_RT_HAS_WX_FLAG /WX CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
Alexey Samsonov2f27f0b2014-02-24 11:22:39 +0000162endif()
163
Alexey Samsonovbcce1972014-03-18 12:49:22 +0000164append_string_if(COMPILER_RT_HAS_STD_CXX11_FLAG -std=c++11 CMAKE_CXX_FLAGS)
165
Reid Kleckner0140ce42014-02-26 21:54:39 +0000166# Emulate C99 and C++11's __func__ for MSVC prior to 2013 CTP.
Alexey Samsonove3e2a112014-02-27 06:52:41 +0000167if(NOT COMPILER_RT_HAS_FUNC_SYMBOL)
Alexey Samsonov8c4c0972014-02-27 07:03:32 +0000168 add_definitions(-D__func__=__FUNCTION__)
Reid Kleckner0140ce42014-02-26 21:54:39 +0000169endif()
170
Chandler Carruthc1c9d582012-08-29 00:13:11 +0000171# Provide some common commmandline flags for Sanitizer runtimes.
Francis Ricci0b6f4872016-09-08 15:57:22 +0000172if(NOT WIN32)
173 append_list_if(COMPILER_RT_HAS_FPIC_FLAG -fPIC SANITIZER_COMMON_CFLAGS)
174endif()
Kuba Brecka14c0c592014-10-15 22:47:54 +0000175append_list_if(COMPILER_RT_HAS_FNO_BUILTIN_FLAG -fno-builtin SANITIZER_COMMON_CFLAGS)
176append_list_if(COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG -fno-exceptions SANITIZER_COMMON_CFLAGS)
Kuba Mracek90caf892017-03-27 17:14:48 +0000177if(NOT COMPILER_RT_DEBUG AND NOT APPLE)
Kuba Brecka83460cf2016-05-22 19:59:06 +0000178 append_list_if(COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG -fomit-frame-pointer SANITIZER_COMMON_CFLAGS)
179endif()
Kuba Brecka14c0c592014-10-15 22:47:54 +0000180append_list_if(COMPILER_RT_HAS_FUNWIND_TABLES_FLAG -funwind-tables SANITIZER_COMMON_CFLAGS)
181append_list_if(COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG -fno-stack-protector SANITIZER_COMMON_CFLAGS)
Peter Collingbourneb64d0b12015-06-15 21:08:47 +0000182append_list_if(COMPILER_RT_HAS_FNO_SANITIZE_SAFE_STACK_FLAG -fno-sanitize=safe-stack SANITIZER_COMMON_CFLAGS)
Kuba Brecka14c0c592014-10-15 22:47:54 +0000183append_list_if(COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG -fvisibility=hidden SANITIZER_COMMON_CFLAGS)
Chris Bieneman9586a382015-11-30 19:16:42 +0000184append_list_if(COMPILER_RT_HAS_FVISIBILITY_INLINES_HIDDEN_FLAG -fvisibility-inlines-hidden SANITIZER_COMMON_CFLAGS)
Evgeniy Stepanov8c9a0702015-01-15 16:31:22 +0000185append_list_if(COMPILER_RT_HAS_FNO_LTO_FLAG -fno-lto SANITIZER_COMMON_CFLAGS)
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000186
Kostya Kortchinsky2282ede2017-01-30 22:31:49 +0000187# The following is a workaround for powerpc64le. This is the only architecture
188# that requires -fno-function-sections to work properly. If lacking, the ASan
189# Linux test function-sections-are-bad.cc fails with the following error:
190# 'undefined symbol: __sanitizer_unaligned_load32'.
191if(DEFINED TARGET_powerpc64le_CFLAGS)
192 append_list_if(COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG -fno-function-sections TARGET_powerpc64le_CFLAGS)
193endif()
194
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000195if(MSVC)
Peter Collingbourne702548d2015-07-08 22:10:34 +0000196 # Replace the /M[DT][d] flags with /MT, and strip any definitions of _DEBUG,
197 # which cause definition mismatches at link time.
Timur Iskhodzhanovde1718d2014-08-12 09:44:56 +0000198 # FIXME: In fact, sanitizers should support both /MT and /MD, see PR20214.
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000199 if(COMPILER_RT_HAS_MT_FLAG)
Aaron Ballman7c7be2f2014-10-23 20:24:00 +0000200 foreach(flag_var
Andrey Turetskiybc0122b2016-02-20 12:56:04 +0000201 CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE
202 CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO
Aaron Ballman7c7be2f2014-10-23 20:24:00 +0000203 CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE
204 CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO)
Peter Collingbourne702548d2015-07-08 22:10:34 +0000205 string(REGEX REPLACE "/M[DT]d" "/MT" ${flag_var} "${${flag_var}}")
206 string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}")
207 string(REGEX REPLACE "/D_DEBUG" "" ${flag_var} "${${flag_var}}")
Aaron Ballman7c7be2f2014-10-23 20:24:00 +0000208 endforeach()
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000209 endif()
Kuba Brecka14c0c592014-10-15 22:47:54 +0000210 append_list_if(COMPILER_RT_HAS_Oy_FLAG /Oy- SANITIZER_COMMON_CFLAGS)
211 append_list_if(COMPILER_RT_HAS_GS_FLAG /GS- SANITIZER_COMMON_CFLAGS)
Reid Kleckner21aca482016-03-21 20:08:59 +0000212 # VS 2015 (version 1900) added support for thread safe static initialization.
213 # However, ASan interceptors run before CRT initialization, which causes the
214 # new thread safe code to crash. Disable this feature for now.
Reid Klecknerf6d54752016-07-21 20:03:37 +0000215 if (MSVC_VERSION GREATER 1899 OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
Reid Kleckner21aca482016-03-21 20:08:59 +0000216 list(APPEND SANITIZER_COMMON_CFLAGS /Zc:threadSafeInit-)
217 endif()
Alexey Samsonov6c282b42014-02-28 08:04:30 +0000218endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000219
Alexey Samsonovea040322015-01-06 20:25:34 +0000220append_list_if(COMPILER_RT_DEBUG -DSANITIZER_DEBUG=1 SANITIZER_COMMON_CFLAGS)
Alexey Samsonovdf3aeb82015-01-03 04:29:12 +0000221
George Karpenkove89d0a82017-07-15 00:30:46 +0000222# If we're using MSVC,
Alexey Samsonovcbc68522014-03-13 13:37:07 +0000223# always respect the optimization flags set by CMAKE_BUILD_TYPE instead.
George Karpenkove89d0a82017-07-15 00:30:46 +0000224if (NOT MSVC)
225
226 # Build with optimization, unless we're in debug mode.
227 if(COMPILER_RT_DEBUG)
228 list(APPEND SANITIZER_COMMON_CFLAGS -O0)
229 else()
230 list(APPEND SANITIZER_COMMON_CFLAGS -O3)
231 endif()
Hans Wennborg67c6e502013-08-27 01:24:01 +0000232endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000233
Alexey Samsonovdf3aeb82015-01-03 04:29:12 +0000234# Determine if we should restrict stack frame sizes.
Dmitry Vyukov4bf08942015-04-10 09:45:22 +0000235# Stack frames on PowerPC and Mips and in debug biuld can be much larger than
Alexey Samsonovdf3aeb82015-01-03 04:29:12 +0000236# anticipated.
237# FIXME: Fix all sanitizers and add -Wframe-larger-than to
238# SANITIZER_COMMON_FLAGS
239if(COMPILER_RT_HAS_WFRAME_LARGER_THAN_FLAG AND NOT COMPILER_RT_DEBUG
Alexey Samsonov63eaeca2015-09-08 23:13:47 +0000240 AND NOT ${COMPILER_RT_DEFAULT_TARGET_ARCH} MATCHES "powerpc|mips")
Alexey Samsonovdf3aeb82015-01-03 04:29:12 +0000241 set(SANITIZER_LIMIT_FRAME_SIZE TRUE)
242else()
243 set(SANITIZER_LIMIT_FRAME_SIZE FALSE)
244endif()
245
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000246# Build sanitizer runtimes with debug info.
Kuba Brecka5238deb2014-12-23 01:52:53 +0000247if(COMPILER_RT_HAS_GLINE_TABLES_ONLY_FLAG AND NOT COMPILER_RT_DEBUG)
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000248 list(APPEND SANITIZER_COMMON_CFLAGS -gline-tables-only)
249elseif(COMPILER_RT_HAS_G_FLAG)
250 list(APPEND SANITIZER_COMMON_CFLAGS -g)
Reid Kleckner1734b972016-08-02 01:02:46 +0000251elseif(MSVC)
252 # Use /Z7 instead of /Zi for the asan runtime. This avoids the LNK4099
253 # warning from the MS linker complaining that it can't find the 'vc140.pdb'
254 # file used by our object library compilations.
255 list(APPEND SANITIZER_COMMON_CFLAGS /Z7)
256 llvm_replace_compiler_option(CMAKE_CXX_FLAGS "/Z[i7I]" "/Z7")
257 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_DEBUG "/Z[i7I]" "/Z7")
258 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELWITHDEBINFO "/Z[i7I]" "/Z7")
Alexey Samsonov75fb6772012-11-08 14:49:28 +0000259endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000260
Kuba Breckaab61c742016-10-08 09:01:27 +0000261if(LLVM_ENABLE_MODULES)
262 # Sanitizers cannot be built with -fmodules. The interceptors intentionally
263 # don't include system headers, which is incompatible with modules.
264 list(APPEND SANITIZER_COMMON_CFLAGS -fno-modules)
265endif()
266
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000267# Turn off several warnings.
Alexey Samsonov829da452014-11-13 21:19:53 +0000268append_list_if(COMPILER_RT_HAS_WGNU_FLAG -Wno-gnu SANITIZER_COMMON_CFLAGS)
269append_list_if(COMPILER_RT_HAS_WVARIADIC_MACROS_FLAG -Wno-variadic-macros SANITIZER_COMMON_CFLAGS)
270append_list_if(COMPILER_RT_HAS_WC99_EXTENSIONS_FLAG -Wno-c99-extensions SANITIZER_COMMON_CFLAGS)
271append_list_if(COMPILER_RT_HAS_WNON_VIRTUAL_DTOR_FLAG -Wno-non-virtual-dtor SANITIZER_COMMON_CFLAGS)
Aaron Ballman1d1f2322014-10-23 20:39:58 +0000272append_list_if(COMPILER_RT_HAS_WD4146_FLAG /wd4146 SANITIZER_COMMON_CFLAGS)
273append_list_if(COMPILER_RT_HAS_WD4291_FLAG /wd4291 SANITIZER_COMMON_CFLAGS)
Kuba Brecka14c0c592014-10-15 22:47:54 +0000274append_list_if(COMPILER_RT_HAS_WD4391_FLAG /wd4391 SANITIZER_COMMON_CFLAGS)
275append_list_if(COMPILER_RT_HAS_WD4722_FLAG /wd4722 SANITIZER_COMMON_CFLAGS)
Aaron Ballman1d1f2322014-10-23 20:39:58 +0000276append_list_if(COMPILER_RT_HAS_WD4800_FLAG /wd4800 SANITIZER_COMMON_CFLAGS)
Chandler Carruthc1c9d582012-08-29 00:13:11 +0000277
Petr Hosek2bbb6ad2017-07-28 03:39:38 +0000278# Set common link flags.
279append_list_if(COMPILER_RT_HAS_NODEFAULTLIBS_FLAG -nodefaultlibs SANITIZER_COMMON_LINK_FLAGS)
280
281if (SANITIZER_USE_COMPILER_RT)
282 list(APPEND SANITIZER_COMMON_LINK_FLAGS -rtlib=compiler-rt)
283 find_compiler_rt_library(builtins COMPILER_RT_BUILTINS_LIBRARY)
284 list(APPEND SANITIZER_COMMON_LINK_LIBS ${COMPILER_RT_BUILTINS_LIBRARY})
285else()
Petr Hoseka14a2cc2017-07-31 22:46:43 +0000286 if (ANDROID)
287 append_list_if(COMPILER_RT_HAS_GCC_LIB gcc SANITIZER_COMMON_LINK_LIBS)
288 else()
289 append_list_if(COMPILER_RT_HAS_GCC_S_LIB gcc_s SANITIZER_COMMON_LINK_LIBS)
290 endif()
Petr Hosek2bbb6ad2017-07-28 03:39:38 +0000291endif()
292
293append_list_if(COMPILER_RT_HAS_LIBC c SANITIZER_COMMON_LINK_LIBS)
294
Vitaly Buka5d960ec2017-08-01 22:22:25 +0000295if("${CMAKE_SYSTEM_NAME}" STREQUAL "Fuchsia")
296 list(APPEND SANITIZER_COMMON_LINK_FLAGS -Wl,-z,defs,-z,now,-z,relro)
297 list(APPEND SANITIZER_COMMON_LINK_LIBS magenta)
298endif()
299
Reid Kleckner44e6e362016-06-17 18:30:37 +0000300# Warnings to turn off for all libraries, not just sanitizers.
301append_string_if(COMPILER_RT_HAS_WUNUSED_PARAMETER_FLAG -Wno-unused-parameter CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
302
Bob Haarmanf51b0d52017-01-04 21:40:00 +0000303if (CMAKE_LINKER MATCHES "link.exe$")
304 # Silence MSVC linker warnings caused by empty object files. The
305 # sanitizer libraries intentionally use ifdefs that result in empty
306 # files, rather than skipping these files in the build system.
307 # Ideally, we would pass this flag only for the libraries that need
308 # it, but CMake doesn't seem to have a way to set linker flags for
309 # individual static libraries, so we enable the suppression flag for
310 # the whole compiler-rt project.
311 append("/IGNORE:4221" CMAKE_STATIC_LINKER_FLAGS)
312endif()
313
Alexey Samsonov9f3938e2013-04-11 15:49:52 +0000314add_subdirectory(include)
315
Reid Klecknerb5093182015-08-11 17:22:06 +0000316set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/projects/libcxx)
Alexey Samsonov8434e602014-02-14 13:02:58 +0000317if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/)
318 set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE)
319else()
Reid Klecknere2328eb2017-05-09 15:54:57 +0000320 set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/../libcxx)
321 if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/)
322 set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE)
323 else()
324 set(COMPILER_RT_HAS_LIBCXX_SOURCES FALSE)
325 endif()
Alexey Samsonov8434e602014-02-14 13:02:58 +0000326endif()
327
Reid Klecknerc1cd8dd2015-08-11 18:43:13 +0000328set(COMPILER_RT_LLD_PATH ${LLVM_MAIN_SRC_DIR}/tools/lld)
Evgeniy Stepanov656bc5b2017-03-25 00:42:25 +0000329if(EXISTS ${COMPILER_RT_LLD_PATH}/ AND LLVM_TOOL_LLD_BUILD)
330 set(COMPILER_RT_HAS_LLD TRUE)
Reid Kleckner45ebaf12015-08-11 00:33:07 +0000331else()
Reid Klecknere2328eb2017-05-09 15:54:57 +0000332 set(COMPILER_RT_LLD_PATH ${LLVM_MAIN_SRC_DIR}/../lld)
Tim Northoverada04352017-06-05 15:10:04 +0000333 if(EXISTS ${COMPILER_RT_LLD_PATH}/ AND LLVM_TOOL_LLD_BUILD)
Reid Klecknere2328eb2017-05-09 15:54:57 +0000334 set(COMPILER_RT_HAS_LLD TRUE)
335 else()
336 set(COMPILER_RT_HAS_LLD FALSE)
337 endif()
Reid Kleckner45ebaf12015-08-11 00:33:07 +0000338endif()
Evgeniy Stepanov656bc5b2017-03-25 00:42:25 +0000339pythonize_bool(COMPILER_RT_HAS_LLD)
Reid Kleckner45ebaf12015-08-11 00:33:07 +0000340
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000341add_subdirectory(lib)
342
Alexey Samsonovcd8535a2014-02-19 11:18:47 +0000343if(COMPILER_RT_INCLUDE_TESTS)
Alexey Samsonov81a2b462014-02-14 11:00:07 +0000344 add_subdirectory(unittests)
Chris Bienemanfb92d9a2015-09-14 19:54:12 +0000345 add_subdirectory(test)
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000346endif()