blob: ec63259b7fc4b0e17568dec6b9740bb58edbe1d7 [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
Alexey Samsonov20abdf62013-10-01 12:52:15 +000029# Top level target used to build all compiler-rt libraries.
30add_custom_target(compiler-rt)
31
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +000032if (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})
41else()
42 # Take output dir and install path from the user.
43 set(COMPILER_RT_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE PATH
44 "Path where built compiler-rt libraries should be stored.")
45 set(COMPILER_RT_INSTALL_PATH ${CMAKE_INSTALL_PREFIX} CACHE PATH
46 "Path where built compiler-rt libraries should be installed.")
47 # FIXME: Rely on llvm-config instead.
48 set(LLVM_BUILD_DIR "" CACHE PATH "Path to LLVM build tree.")
49 if (NOT LLVM_BUILD_DIR)
50 message(FATAL_ERROR "LLVM_BUILD_DIR must be specified.")
51 endif()
52 # Make use of LLVM CMake modules.
53 set(LLVM_CMAKE_PATH "${LLVM_BUILD_DIR}/share/llvm/cmake")
54 list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_PATH}")
55 # Get some LLVM variables from LLVMConfig.
56 include("${LLVM_CMAKE_PATH}/LLVMConfig.cmake")
57
58 # Setup another LLVM variables.
59 # FIXME: get the following paths from llvm-config instead.
60 set(LLVM_TOOLS_BINARY_DIR "${LLVM_BUILD_DIR}/bin")
61 set(LLVM_LIBRARY_DIR "${LLVM_BUILD_DIR}/lib")
62
63 set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib)
64endif()
65
Alexey Samsonov1181a102014-02-18 14:28:53 +000066string(TOLOWER ${CMAKE_SYSTEM_NAME} COMPILER_RT_OS_DIR)
Alexey Samsonov1181a102014-02-18 14:28:53 +000067set(COMPILER_RT_LIBRARY_OUTPUT_DIR
68 ${COMPILER_RT_OUTPUT_DIR}/lib/${COMPILER_RT_OS_DIR})
Alexey Samsonov8c2cd862013-01-20 13:58:10 +000069set(COMPILER_RT_LIBRARY_INSTALL_DIR
Alexey Samsonov1181a102014-02-18 14:28:53 +000070 ${COMPILER_RT_INSTALL_PATH}/lib/${COMPILER_RT_OS_DIR})
Alexey Samsonov8c2cd862013-01-20 13:58:10 +000071
Alexey Samsonovde4ef2a2014-02-19 07:49:16 +000072# Add path for custom compiler-rt modules.
Alexey Samsonovca7fcf22012-12-19 12:33:39 +000073set(CMAKE_MODULE_PATH
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +000074 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
Alexey Samsonovca7fcf22012-12-19 12:33:39 +000075 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules"
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +000076 ${CMAKE_MODULE_PATH}
Alexey Samsonovca7fcf22012-12-19 12:33:39 +000077 )
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +000078include(CompilerRTUtils)
Alexey Samsonovca7fcf22012-12-19 12:33:39 +000079
80set(COMPILER_RT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Alexey Samsonov6a65b182013-06-06 12:35:48 +000081set(COMPILER_RT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
Alexey Samsonov4c17c1b2013-03-19 09:17:35 +000082# Setup custom SDK sysroots.
83set(COMPILER_RT_DARWIN_SDK_SYSROOT ${COMPILER_RT_SOURCE_DIR}/SDKs/darwin)
84set(COMPILER_RT_LINUX_SDK_SYSROOT ${COMPILER_RT_SOURCE_DIR}/SDKs/linux)
Alexey Samsonovca7fcf22012-12-19 12:33:39 +000085
Evgeniy Stepanov6db97e82014-02-10 13:34:43 +000086set(COMPILER_RT_EXTRA_ANDROID_HEADERS ${COMPILER_RT_SOURCE_DIR}/third_party/android/include)
87
Chandler Carruth1f5d5c02012-04-04 22:12:04 +000088# Detect whether the current target platform is 32-bit or 64-bit, and setup
89# the correct commandline flags needed to attempt to target 32-bit and 64-bit.
Alexey Samsonovdd8872b2013-06-30 16:21:32 +000090if (NOT CMAKE_SIZEOF_VOID_P EQUAL 4 AND
91 NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
92 message(FATAL_ERROR "Please use architecture with 4 or 8 byte pointers.")
Chandler Carruth1f5d5c02012-04-04 22:12:04 +000093endif()
Hans Wennborg67c6e502013-08-27 01:24:01 +000094if (NOT MSVC)
95 set(TARGET_64_BIT_CFLAGS "-m64")
96 set(TARGET_32_BIT_CFLAGS "-m32")
97else()
98 set(TARGET_64_BIT_CFLAGS "")
99 set(TARGET_32_BIT_CFLAGS "")
100endif()
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000101
Alexey Samsonovb6700182013-01-21 14:31:45 +0000102# List of architectures we can target.
103set(COMPILER_RT_SUPPORTED_ARCH)
Alexey Samsonov4b0ee8e2013-01-18 13:10:42 +0000104
Alexey Samsonov85bd73d2012-12-19 15:17:23 +0000105function(get_target_flags_for_arch arch out_var)
Alexey Samsonov4b0ee8e2013-01-18 13:10:42 +0000106 list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX)
107 if(ARCH_INDEX EQUAL -1)
Alexey Samsonov85bd73d2012-12-19 15:17:23 +0000108 message(FATAL_ERROR "Unsupported architecture: ${arch}")
Alexey Samsonov4b0ee8e2013-01-18 13:10:42 +0000109 else()
110 set(${out_var} ${TARGET_${arch}_CFLAGS} PARENT_SCOPE)
Alexey Samsonov85bd73d2012-12-19 15:17:23 +0000111 endif()
112endfunction()
113
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000114# Try to compile a very simple source file to ensure we can target the given
115# platform. We use the results of these tests to build only the various target
116# runtime libraries supported by our current compilers cross-compiling
117# abilities.
Alexey Samsonovb6700182013-01-21 14:31:45 +0000118set(SIMPLE_SOURCE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/simple.c)
119file(WRITE ${SIMPLE_SOURCE} "#include <stdlib.h>\nint main() {}")
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000120
Alexey Samsonovb6700182013-01-21 14:31:45 +0000121# test_target_arch(<arch> <target flags...>)
122# Sets the target flags for a given architecture and determines if this
123# architecture is supported by trying to build a simple file.
124macro(test_target_arch arch)
125 set(TARGET_${arch}_CFLAGS ${ARGN})
126 try_compile(CAN_TARGET_${arch} ${CMAKE_BINARY_DIR} ${SIMPLE_SOURCE}
127 COMPILE_DEFINITIONS "${TARGET_${arch}_CFLAGS}"
128 CMAKE_FLAGS "-DCMAKE_EXE_LINKER_FLAGS:STRING=${TARGET_${arch}_CFLAGS}")
129 if(${CAN_TARGET_${arch}})
130 list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
131 endif()
132endmacro()
133
Evgeniy Stepanovaa9d74c2014-02-14 09:22:10 +0000134if(ANDROID_COMMON_FLAGS)
135 test_target_arch(arm_android "${ANDROID_COMMON_FLAGS}")
136else()
137 if("${LLVM_NATIVE_ARCH}" STREQUAL "X86")
138 if (NOT MSVC)
139 test_target_arch(x86_64 ${TARGET_64_BIT_CFLAGS})
140 endif()
141 test_target_arch(i386 ${TARGET_32_BIT_CFLAGS})
142 elseif("${LLVM_NATIVE_ARCH}" STREQUAL "PowerPC")
143 test_target_arch(powerpc64 ${TARGET_64_BIT_CFLAGS})
144 elseif("${LLVM_NATIVE_ARCH}" STREQUAL "ARM")
145 test_target_arch(arm "")
Hans Wennborg67c6e502013-08-27 01:24:01 +0000146 endif()
Alexey Samsonovb6700182013-01-21 14:31:45 +0000147endif()
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000148
Alexey Samsonovc20f5d22012-12-27 13:19:23 +0000149# We only support running instrumented tests when we're not cross compiling
Evgeniy Stepanovaa9d74c2014-02-14 09:22:10 +0000150# and target a unix-like system. We can run tests on Android even when we are
151# cross-compiling.
152if(("${CMAKE_HOST_SYSTEM}" STREQUAL "${CMAKE_SYSTEM}" AND UNIX) OR ANDROID)
Michael Gottesman4ddc2152013-04-01 04:13:03 +0000153 option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" ON)
Alexey Samsonovc20f5d22012-12-27 13:19:23 +0000154else()
Michael Gottesman4ddc2152013-04-01 04:13:03 +0000155 option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" OFF)
Alexey Samsonovc20f5d22012-12-27 13:19:23 +0000156endif()
Michael Gottesman4ddc2152013-04-01 04:13:03 +0000157
Alexey Samsonov5cb78602013-02-08 07:39:25 +0000158# Check if compiler-rt is built with libc++.
159find_flag_in_string("${CMAKE_CXX_FLAGS}" "-stdlib=libc++"
160 COMPILER_RT_USES_LIBCXX)
161
Alexey Samsonovfb844c72012-08-10 14:45:52 +0000162function(filter_available_targets out_var)
163 set(archs)
164 foreach(arch ${ARGN})
Alexey Samsonov4b0ee8e2013-01-18 13:10:42 +0000165 list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX)
166 if(NOT (ARCH_INDEX EQUAL -1) AND CAN_TARGET_${arch})
Alexey Samsonovfb844c72012-08-10 14:45:52 +0000167 list(APPEND archs ${arch})
168 endif()
169 endforeach()
170 set(${out_var} ${archs} PARENT_SCOPE)
171endfunction()
172
Peter Collingbournecbdea322013-10-25 23:03:34 +0000173option(COMPILER_RT_DEBUG "Build runtimes with full debug info" OFF)
Peter Collingbournecbdea322013-10-25 23:03:34 +0000174# COMPILER_RT_DEBUG_PYBOOL is used by lit.common.configured.in.
175pythonize_bool(COMPILER_RT_DEBUG)
176
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000177#================================
178# Setup Compiler Flags
179#================================
180include(config-ix)
181
Chandler Carruthc1c9d582012-08-29 00:13:11 +0000182# Provide some common commmandline flags for Sanitizer runtimes.
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000183append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FPIC_FLAG -fPIC)
184append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_BUILTIN_FLAG -fno-builtin)
185append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG -fno-exceptions)
186append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG -fomit-frame-pointer)
187append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FUNWIND_TABLES_FLAG -funwind-tables)
188append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG -fno-stack-protector)
189append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG -fvisibility=hidden)
190append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG -fno-function-sections)
191
192append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_MT_FLAG /MT)
193append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_Oy_FLAG /Oy-)
194append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_GS_FLAG /GS-)
195
196# Build with optimization, unless we're in debug mode.
197if(NOT COMPILER_RT_DEBUG)
198 if(MSVC)
199 list(APPEND SANITIZER_COMMON_CFLAGS /O2)
200 else()
Peter Collingbournecbdea322013-10-25 23:03:34 +0000201 list(APPEND SANITIZER_COMMON_CFLAGS -O3)
202 endif()
Hans Wennborg67c6e502013-08-27 01:24:01 +0000203endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000204
205# Build sanitizer runtimes with debug info.
206if(COMPILER_RT_HAS_GLINE_TABLES_ONLY_FLAG)
207 list(APPEND SANITIZER_COMMON_CFLAGS -gline-tables-only)
208elseif(COMPILER_RT_HAS_G_FLAG)
209 list(APPEND SANITIZER_COMMON_CFLAGS -g)
210elseif(COMPILER_RT_HAS_Zi_FLAG)
211 list(APPEND SANITIZER_COMMON_CFLAGS /Zi)
Alexey Samsonov75fb6772012-11-08 14:49:28 +0000212endif()
Alexey Samsonov9a1ffce2014-02-18 07:26:58 +0000213
214# Turn off several warnings.
215append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_GNU_FLAG -Wno-gnu)
216append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_VARIADIC_MACROS_FLAG -Wno-variadic-macros)
217append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_C99_EXTENSIONS_FLAG -Wno-c99-extensions)
218append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_NON_VIRTUAL_DTOR_FLAG -Wno-non-virtual-dtor)
219append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WD4722_FLAG /wd4722)
Alexey Samsonov5cb78602013-02-08 07:39:25 +0000220
Alexey Samsonovd83ccd02012-09-05 09:00:03 +0000221if(APPLE)
Alexander Potapenko49034e32013-11-07 10:08:19 +0000222 # Obtain the iOS Simulator SDK path from xcodebuild.
223 execute_process(
224 COMMAND xcodebuild -version -sdk iphonesimulator Path
225 OUTPUT_VARIABLE IOSSIM_SDK_DIR
226 OUTPUT_STRIP_TRAILING_WHITESPACE
227 )
Alexey Samsonov1dbe6e02014-02-18 12:01:24 +0000228 string(REGEX MATCH "-mmacosx-version-min="
229 MACOSX_VERSION_MIN_FLAG "${CMAKE_CXX_FLAGS}")
Alexander Potapenko49034e32013-11-07 10:08:19 +0000230 set(SANITIZER_COMMON_SUPPORTED_DARWIN_OS osx)
Alexey Samsonov1dbe6e02014-02-18 12:01:24 +0000231 if (IOSSIM_SDK_DIR AND NOT MACOSX_VERSION_MIN_FLAG)
Alexander Potapenko49034e32013-11-07 10:08:19 +0000232 list(APPEND SANITIZER_COMMON_SUPPORTED_DARWIN_OS iossim)
233 endif()
234
Alexey Samsonov5cb78602013-02-08 07:39:25 +0000235 if(COMPILER_RT_USES_LIBCXX)
236 set(SANITIZER_MIN_OSX_VERSION 10.7)
237 else()
Alexey Samsonoveb797322013-07-16 11:54:40 +0000238 set(SANITIZER_MIN_OSX_VERSION 10.6)
Alexey Samsonov5cb78602013-02-08 07:39:25 +0000239 endif()
Alexander Potapenko49034e32013-11-07 10:08:19 +0000240 set(DARWIN_osx_CFLAGS -mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION})
241 set(DARWIN_iossim_CFLAGS
242 -mios-simulator-version-min=7.0 -isysroot ${IOSSIM_SDK_DIR})
243 set(DARWIN_osx_LINKFLAGS)
244 set(DARWIN_iossim_LINKFLAGS
245 -Wl,-ios_simulator_version_min,7.0.0
246 -mios-simulator-version-min=7.0
Alexander Potapenko2b002892013-11-19 14:58:42 +0000247 -isysroot ${IOSSIM_SDK_DIR})
Alexey Samsonovd83ccd02012-09-05 09:00:03 +0000248endif()
Chandler Carruthc1c9d582012-08-29 00:13:11 +0000249
Alexey Samsonovb0684832013-01-18 16:51:07 +0000250# Architectures supported by Sanitizer runtimes. Specific sanitizers may
251# support only subset of these (e.g. TSan works on x86_64 only).
252filter_available_targets(SANITIZER_COMMON_SUPPORTED_ARCH
Renato Golin66e2b702014-01-31 14:25:58 +0000253 x86_64 i386 powerpc64 arm)
Alexey Samsonov9f20d672014-02-14 14:06:10 +0000254filter_available_targets(ASAN_SUPPORTED_ARCH x86_64 i386 powerpc64)
Alexey Samsonovf6cf6ab2014-02-14 12:05:41 +0000255filter_available_targets(DFSAN_SUPPORTED_ARCH x86_64)
Alexey Samsonov7eeef852014-02-14 12:26:05 +0000256filter_available_targets(LSAN_SUPPORTED_ARCH x86_64)
Alexey Samsonov8434e602014-02-14 13:02:58 +0000257filter_available_targets(MSAN_SUPPORTED_ARCH x86_64)
Alexey Samsonove6a61832014-02-14 14:35:48 +0000258filter_available_targets(TSAN_SUPPORTED_ARCH x86_64)
Alexey Samsonovf6cf6ab2014-02-14 12:05:41 +0000259filter_available_targets(UBSAN_SUPPORTED_ARCH x86_64 i386)
Alexey Samsonovb0684832013-01-18 16:51:07 +0000260
Alexey Samsonov9f3938e2013-04-11 15:49:52 +0000261add_subdirectory(include)
262
Alexey Samsonov8434e602014-02-14 13:02:58 +0000263set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/projects/libcxx)
264if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/)
265 set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE)
266else()
267 set(COMPILER_RT_HAS_LIBCXX_SOURCES FALSE)
268endif()
269
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000270add_subdirectory(lib)
271
272if(LLVM_INCLUDE_TESTS)
Alexey Samsonov81a2b462014-02-14 11:00:07 +0000273 add_subdirectory(unittests)
Chandler Carruth1f5d5c02012-04-04 22:12:04 +0000274endif()
Alexey Samsonov9f20d672014-02-14 14:06:10 +0000275add_subdirectory(test)