2012-04-04 22:12:04 +00:00
|
|
|
# CMake build for CompilerRT.
|
|
|
|
#
|
|
|
|
# This build assumes that CompilerRT is checked out into the
|
2014-02-19 07:49:16 +00:00
|
|
|
# 'projects/compiler-rt' inside of an LLVM tree.
|
|
|
|
# Standalone build system for CompilerRT is not yet ready.
|
2012-04-04 22:12:04 +00:00
|
|
|
#
|
|
|
|
# An important constraint of the build is that it only produces libraries
|
|
|
|
# based on the ability of the host toolchain to target various platforms.
|
|
|
|
|
2014-02-19 07:49:16 +00:00
|
|
|
# Check if compiler-rt is built as a standalone project.
|
|
|
|
if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
|
|
|
project(CompilerRT)
|
|
|
|
set(COMPILER_RT_STANDALONE_BUILD TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_STANDALONE_BUILD FALSE)
|
|
|
|
endif()
|
|
|
|
|
2012-06-25 08:40:10 +00:00
|
|
|
# The CompilerRT build system requires CMake version 2.8.8 or higher in order
|
|
|
|
# to use its support for building convenience "libraries" as a collection of
|
|
|
|
# .o files. This is particularly useful in producing larger, more complex
|
|
|
|
# runtime libraries.
|
2014-02-11 21:46:19 +00:00
|
|
|
if (NOT MSVC)
|
|
|
|
cmake_minimum_required(VERSION 2.8.8)
|
|
|
|
else()
|
|
|
|
# Version 2.8.12.1 is required to build with Visual Studion 2013.
|
|
|
|
cmake_minimum_required(VERSION 2.8.12.1)
|
|
|
|
endif()
|
|
|
|
|
2013-10-01 12:52:15 +00:00
|
|
|
# Top level target used to build all compiler-rt libraries.
|
|
|
|
add_custom_target(compiler-rt)
|
|
|
|
|
2014-02-19 07:49:16 +00:00
|
|
|
if (NOT COMPILER_RT_STANDALONE_BUILD)
|
|
|
|
# Compute the Clang version from the LLVM version.
|
|
|
|
# FIXME: We should be able to reuse CLANG_VERSION variable calculated
|
|
|
|
# in Clang cmake files, instead of copying the rules here.
|
|
|
|
string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION
|
|
|
|
${PACKAGE_VERSION})
|
|
|
|
# Setup the paths where compiler-rt runtimes and headers should be stored.
|
|
|
|
set(COMPILER_RT_OUTPUT_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/clang/${CLANG_VERSION})
|
|
|
|
set(COMPILER_RT_INSTALL_PATH lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION})
|
2014-02-19 11:18:47 +00:00
|
|
|
option(COMPILER_RT_INCLUDE_TESTS "Generate and build compiler-rt unit tests."
|
|
|
|
${LLVM_INCLUDE_TESTS})
|
2014-02-19 13:01:03 +00:00
|
|
|
# Use just-built Clang to compile/link tests.
|
2014-02-19 13:45:49 +00:00
|
|
|
set(COMPILER_RT_TEST_COMPILER ${LLVM_RUNTIME_OUTPUT_INTDIR}/clang)
|
2014-02-19 15:13:14 +00:00
|
|
|
set(COMPILER_RT_TEST_COMPILER_ID Clang)
|
2014-02-19 07:49:16 +00:00
|
|
|
else()
|
|
|
|
# Take output dir and install path from the user.
|
|
|
|
set(COMPILER_RT_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR} CACHE PATH
|
|
|
|
"Path where built compiler-rt libraries should be stored.")
|
|
|
|
set(COMPILER_RT_INSTALL_PATH ${CMAKE_INSTALL_PREFIX} CACHE PATH
|
|
|
|
"Path where built compiler-rt libraries should be installed.")
|
2014-02-19 11:18:47 +00:00
|
|
|
option(COMPILER_RT_INCLUDE_TESTS "Generate and build compiler-rt unit tests." OFF)
|
2014-02-19 13:01:03 +00:00
|
|
|
# Use a host compiler to compile/link tests.
|
2014-02-19 13:45:49 +00:00
|
|
|
set(COMPILER_RT_TEST_COMPILER ${CMAKE_C_COMPILER})
|
2014-02-19 15:13:14 +00:00
|
|
|
set(COMPILER_RT_TEST_COMPILER_ID ${CMAKE_C_COMPILER_ID})
|
2014-02-19 10:04:29 +00:00
|
|
|
|
|
|
|
set(LLVM_CONFIG_PATH "" CACHE PATH "Path to llvm-config binary")
|
|
|
|
if (NOT LLVM_CONFIG_PATH)
|
|
|
|
find_program(LLVM_CONFIG_PATH "llvm-config")
|
|
|
|
if (NOT LLVM_CONFIG_PATH)
|
|
|
|
message(FATAL_ERROR "llvm-config not found: specify LLVM_CONFIG_PATH")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${LLVM_CONFIG_PATH} "--obj-root" "--bindir" "--libdir" "--src-root"
|
|
|
|
RESULT_VARIABLE HAD_ERROR
|
|
|
|
OUTPUT_VARIABLE CONFIG_OUTPUT)
|
|
|
|
if (HAD_ERROR)
|
|
|
|
message(FATAL_ERROR "llvm-config failed with status ${HAD_ERROR}")
|
2014-02-19 07:49:16 +00:00
|
|
|
endif()
|
2014-02-19 10:04:29 +00:00
|
|
|
string(REGEX REPLACE "[ \t]*[\r\n]+[ \t]*" ";" CONFIG_OUTPUT ${CONFIG_OUTPUT})
|
|
|
|
list(GET CONFIG_OUTPUT 0 LLVM_BINARY_DIR)
|
|
|
|
list(GET CONFIG_OUTPUT 1 LLVM_TOOLS_BINARY_DIR)
|
|
|
|
list(GET CONFIG_OUTPUT 2 LLVM_LIBRARY_DIR)
|
|
|
|
list(GET CONFIG_OUTPUT 3 LLVM_MAIN_SRC_DIR)
|
|
|
|
|
2014-02-19 07:49:16 +00:00
|
|
|
# Make use of LLVM CMake modules.
|
2014-02-19 10:04:29 +00:00
|
|
|
set(LLVM_CMAKE_PATH "${LLVM_BINARY_DIR}/share/llvm/cmake")
|
2014-02-19 07:49:16 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${LLVM_CMAKE_PATH}")
|
|
|
|
# Get some LLVM variables from LLVMConfig.
|
|
|
|
include("${LLVM_CMAKE_PATH}/LLVMConfig.cmake")
|
|
|
|
|
|
|
|
set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib)
|
2014-02-19 10:04:29 +00:00
|
|
|
|
|
|
|
# Find Python interpreter.
|
|
|
|
set(Python_ADDITIONAL_VERSIONS 2.7 2.6 2.5)
|
|
|
|
include(FindPythonInterp)
|
|
|
|
if(NOT PYTHONINTERP_FOUND)
|
|
|
|
message(FATAL_ERROR "
|
|
|
|
Unable to find Python interpreter required testing. Please install Python
|
|
|
|
or specify the PYTHON_EXECUTABLE CMake variable.")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Define default arguments to lit.
|
|
|
|
set(LIT_ARGS_DEFAULT "-sv")
|
|
|
|
if (MSVC OR XCODE)
|
|
|
|
set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
|
|
|
|
endif()
|
|
|
|
set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
|
2014-02-19 07:49:16 +00:00
|
|
|
endif()
|
|
|
|
|
2014-02-18 14:28:53 +00:00
|
|
|
string(TOLOWER ${CMAKE_SYSTEM_NAME} COMPILER_RT_OS_DIR)
|
|
|
|
set(COMPILER_RT_LIBRARY_OUTPUT_DIR
|
|
|
|
${COMPILER_RT_OUTPUT_DIR}/lib/${COMPILER_RT_OS_DIR})
|
2013-01-20 13:58:10 +00:00
|
|
|
set(COMPILER_RT_LIBRARY_INSTALL_DIR
|
2014-02-18 14:28:53 +00:00
|
|
|
${COMPILER_RT_INSTALL_PATH}/lib/${COMPILER_RT_OS_DIR})
|
2013-01-20 13:58:10 +00:00
|
|
|
|
2014-02-19 07:49:16 +00:00
|
|
|
# Add path for custom compiler-rt modules.
|
2012-12-19 12:33:39 +00:00
|
|
|
set(CMAKE_MODULE_PATH
|
2014-02-18 07:26:58 +00:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
|
2012-12-19 12:33:39 +00:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules"
|
2014-02-18 07:26:58 +00:00
|
|
|
${CMAKE_MODULE_PATH}
|
2012-12-19 12:33:39 +00:00
|
|
|
)
|
2014-02-18 07:26:58 +00:00
|
|
|
include(CompilerRTUtils)
|
2012-12-19 12:33:39 +00:00
|
|
|
|
|
|
|
set(COMPILER_RT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
2013-06-06 12:35:48 +00:00
|
|
|
set(COMPILER_RT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
|
2013-03-19 09:17:35 +00:00
|
|
|
# Setup custom SDK sysroots.
|
|
|
|
set(COMPILER_RT_DARWIN_SDK_SYSROOT ${COMPILER_RT_SOURCE_DIR}/SDKs/darwin)
|
|
|
|
set(COMPILER_RT_LINUX_SDK_SYSROOT ${COMPILER_RT_SOURCE_DIR}/SDKs/linux)
|
2012-12-19 12:33:39 +00:00
|
|
|
|
2014-02-10 13:34:43 +00:00
|
|
|
set(COMPILER_RT_EXTRA_ANDROID_HEADERS ${COMPILER_RT_SOURCE_DIR}/third_party/android/include)
|
|
|
|
|
2012-04-04 22:12:04 +00:00
|
|
|
# Detect whether the current target platform is 32-bit or 64-bit, and setup
|
|
|
|
# the correct commandline flags needed to attempt to target 32-bit and 64-bit.
|
2013-06-30 16:21:32 +00:00
|
|
|
if (NOT CMAKE_SIZEOF_VOID_P EQUAL 4 AND
|
|
|
|
NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
|
|
message(FATAL_ERROR "Please use architecture with 4 or 8 byte pointers.")
|
2012-04-04 22:12:04 +00:00
|
|
|
endif()
|
2013-08-27 01:24:01 +00:00
|
|
|
if (NOT MSVC)
|
|
|
|
set(TARGET_64_BIT_CFLAGS "-m64")
|
|
|
|
set(TARGET_32_BIT_CFLAGS "-m32")
|
|
|
|
else()
|
|
|
|
set(TARGET_64_BIT_CFLAGS "")
|
|
|
|
set(TARGET_32_BIT_CFLAGS "")
|
|
|
|
endif()
|
2012-04-04 22:12:04 +00:00
|
|
|
|
2013-01-21 14:31:45 +00:00
|
|
|
# List of architectures we can target.
|
|
|
|
set(COMPILER_RT_SUPPORTED_ARCH)
|
2013-01-18 13:10:42 +00:00
|
|
|
|
2012-12-19 15:17:23 +00:00
|
|
|
function(get_target_flags_for_arch arch out_var)
|
2013-01-18 13:10:42 +00:00
|
|
|
list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX)
|
|
|
|
if(ARCH_INDEX EQUAL -1)
|
2012-12-19 15:17:23 +00:00
|
|
|
message(FATAL_ERROR "Unsupported architecture: ${arch}")
|
2013-01-18 13:10:42 +00:00
|
|
|
else()
|
|
|
|
set(${out_var} ${TARGET_${arch}_CFLAGS} PARENT_SCOPE)
|
2012-12-19 15:17:23 +00:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
2012-04-04 22:12:04 +00:00
|
|
|
# Try to compile a very simple source file to ensure we can target the given
|
|
|
|
# platform. We use the results of these tests to build only the various target
|
|
|
|
# runtime libraries supported by our current compilers cross-compiling
|
|
|
|
# abilities.
|
2013-01-21 14:31:45 +00:00
|
|
|
set(SIMPLE_SOURCE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/simple.c)
|
|
|
|
file(WRITE ${SIMPLE_SOURCE} "#include <stdlib.h>\nint main() {}")
|
|
|
|
|
|
|
|
# test_target_arch(<arch> <target flags...>)
|
|
|
|
# Sets the target flags for a given architecture and determines if this
|
|
|
|
# architecture is supported by trying to build a simple file.
|
|
|
|
macro(test_target_arch arch)
|
|
|
|
set(TARGET_${arch}_CFLAGS ${ARGN})
|
|
|
|
try_compile(CAN_TARGET_${arch} ${CMAKE_BINARY_DIR} ${SIMPLE_SOURCE}
|
|
|
|
COMPILE_DEFINITIONS "${TARGET_${arch}_CFLAGS}"
|
|
|
|
CMAKE_FLAGS "-DCMAKE_EXE_LINKER_FLAGS:STRING=${TARGET_${arch}_CFLAGS}")
|
|
|
|
if(${CAN_TARGET_${arch}})
|
|
|
|
list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
2014-02-14 09:22:10 +00:00
|
|
|
if(ANDROID_COMMON_FLAGS)
|
|
|
|
test_target_arch(arm_android "${ANDROID_COMMON_FLAGS}")
|
|
|
|
else()
|
|
|
|
if("${LLVM_NATIVE_ARCH}" STREQUAL "X86")
|
|
|
|
if (NOT MSVC)
|
|
|
|
test_target_arch(x86_64 ${TARGET_64_BIT_CFLAGS})
|
|
|
|
endif()
|
|
|
|
test_target_arch(i386 ${TARGET_32_BIT_CFLAGS})
|
|
|
|
elseif("${LLVM_NATIVE_ARCH}" STREQUAL "PowerPC")
|
|
|
|
test_target_arch(powerpc64 ${TARGET_64_BIT_CFLAGS})
|
|
|
|
elseif("${LLVM_NATIVE_ARCH}" STREQUAL "ARM")
|
|
|
|
test_target_arch(arm "")
|
2013-08-27 01:24:01 +00:00
|
|
|
endif()
|
2013-01-21 14:31:45 +00:00
|
|
|
endif()
|
2012-04-04 22:12:04 +00:00
|
|
|
|
2012-12-27 13:19:23 +00:00
|
|
|
# We only support running instrumented tests when we're not cross compiling
|
2014-02-14 09:22:10 +00:00
|
|
|
# and target a unix-like system. We can run tests on Android even when we are
|
|
|
|
# cross-compiling.
|
|
|
|
if(("${CMAKE_HOST_SYSTEM}" STREQUAL "${CMAKE_SYSTEM}" AND UNIX) OR ANDROID)
|
2013-04-01 04:13:03 +00:00
|
|
|
option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" ON)
|
2012-12-27 13:19:23 +00:00
|
|
|
else()
|
2013-04-01 04:13:03 +00:00
|
|
|
option(COMPILER_RT_CAN_EXECUTE_TESTS "Can we execute instrumented tests" OFF)
|
2012-12-27 13:19:23 +00:00
|
|
|
endif()
|
2013-04-01 04:13:03 +00:00
|
|
|
|
2013-02-08 07:39:25 +00:00
|
|
|
# Check if compiler-rt is built with libc++.
|
|
|
|
find_flag_in_string("${CMAKE_CXX_FLAGS}" "-stdlib=libc++"
|
|
|
|
COMPILER_RT_USES_LIBCXX)
|
|
|
|
|
2012-08-10 14:45:52 +00:00
|
|
|
function(filter_available_targets out_var)
|
|
|
|
set(archs)
|
|
|
|
foreach(arch ${ARGN})
|
2013-01-18 13:10:42 +00:00
|
|
|
list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX)
|
|
|
|
if(NOT (ARCH_INDEX EQUAL -1) AND CAN_TARGET_${arch})
|
2012-08-10 14:45:52 +00:00
|
|
|
list(APPEND archs ${arch})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
set(${out_var} ${archs} PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|
|
|
2013-10-25 23:03:34 +00:00
|
|
|
option(COMPILER_RT_DEBUG "Build runtimes with full debug info" OFF)
|
|
|
|
# COMPILER_RT_DEBUG_PYBOOL is used by lit.common.configured.in.
|
|
|
|
pythonize_bool(COMPILER_RT_DEBUG)
|
|
|
|
|
2014-02-18 07:26:58 +00:00
|
|
|
#================================
|
|
|
|
# Setup Compiler Flags
|
|
|
|
#================================
|
|
|
|
include(config-ix)
|
|
|
|
|
|
|
|
# Provide some common commmandline flags for Sanitizer runtimes.
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FPIC_FLAG -fPIC)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_BUILTIN_FLAG -fno-builtin)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG -fno-exceptions)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG -fomit-frame-pointer)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FUNWIND_TABLES_FLAG -funwind-tables)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG -fno-stack-protector)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG -fvisibility=hidden)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG -fno-function-sections)
|
|
|
|
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_MT_FLAG /MT)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_Oy_FLAG /Oy-)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_GS_FLAG /GS-)
|
|
|
|
|
|
|
|
# Build with optimization, unless we're in debug mode.
|
|
|
|
if(NOT COMPILER_RT_DEBUG)
|
|
|
|
if(MSVC)
|
|
|
|
list(APPEND SANITIZER_COMMON_CFLAGS /O2)
|
2013-08-27 01:24:01 +00:00
|
|
|
else()
|
2014-02-18 07:26:58 +00:00
|
|
|
list(APPEND SANITIZER_COMMON_CFLAGS -O3)
|
2013-08-27 01:24:01 +00:00
|
|
|
endif()
|
2012-11-08 14:49:28 +00:00
|
|
|
endif()
|
2014-02-18 07:26:58 +00:00
|
|
|
|
|
|
|
# Build sanitizer runtimes with debug info.
|
|
|
|
if(COMPILER_RT_HAS_GLINE_TABLES_ONLY_FLAG)
|
|
|
|
list(APPEND SANITIZER_COMMON_CFLAGS -gline-tables-only)
|
|
|
|
elseif(COMPILER_RT_HAS_G_FLAG)
|
|
|
|
list(APPEND SANITIZER_COMMON_CFLAGS -g)
|
|
|
|
elseif(COMPILER_RT_HAS_Zi_FLAG)
|
|
|
|
list(APPEND SANITIZER_COMMON_CFLAGS /Zi)
|
2013-03-25 10:31:49 +00:00
|
|
|
endif()
|
2014-02-18 07:26:58 +00:00
|
|
|
|
|
|
|
# Turn off several warnings.
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_GNU_FLAG -Wno-gnu)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_VARIADIC_MACROS_FLAG -Wno-variadic-macros)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_C99_EXTENSIONS_FLAG -Wno-c99-extensions)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WNO_NON_VIRTUAL_DTOR_FLAG -Wno-non-virtual-dtor)
|
|
|
|
append_if(SANITIZER_COMMON_CFLAGS COMPILER_RT_HAS_WD4722_FLAG /wd4722)
|
2013-02-08 07:39:25 +00:00
|
|
|
|
2012-09-05 09:00:03 +00:00
|
|
|
if(APPLE)
|
2013-11-07 10:08:19 +00:00
|
|
|
# Obtain the iOS Simulator SDK path from xcodebuild.
|
|
|
|
execute_process(
|
|
|
|
COMMAND xcodebuild -version -sdk iphonesimulator Path
|
|
|
|
OUTPUT_VARIABLE IOSSIM_SDK_DIR
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
2014-02-18 12:01:24 +00:00
|
|
|
string(REGEX MATCH "-mmacosx-version-min="
|
|
|
|
MACOSX_VERSION_MIN_FLAG "${CMAKE_CXX_FLAGS}")
|
2013-11-07 10:08:19 +00:00
|
|
|
set(SANITIZER_COMMON_SUPPORTED_DARWIN_OS osx)
|
2014-02-18 12:01:24 +00:00
|
|
|
if (IOSSIM_SDK_DIR AND NOT MACOSX_VERSION_MIN_FLAG)
|
2013-11-07 10:08:19 +00:00
|
|
|
list(APPEND SANITIZER_COMMON_SUPPORTED_DARWIN_OS iossim)
|
|
|
|
endif()
|
|
|
|
|
2013-02-08 07:39:25 +00:00
|
|
|
if(COMPILER_RT_USES_LIBCXX)
|
|
|
|
set(SANITIZER_MIN_OSX_VERSION 10.7)
|
|
|
|
else()
|
2013-07-16 11:54:40 +00:00
|
|
|
set(SANITIZER_MIN_OSX_VERSION 10.6)
|
2013-02-08 07:39:25 +00:00
|
|
|
endif()
|
2013-11-07 10:08:19 +00:00
|
|
|
set(DARWIN_osx_CFLAGS -mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION})
|
|
|
|
set(DARWIN_iossim_CFLAGS
|
|
|
|
-mios-simulator-version-min=7.0 -isysroot ${IOSSIM_SDK_DIR})
|
|
|
|
set(DARWIN_osx_LINKFLAGS)
|
|
|
|
set(DARWIN_iossim_LINKFLAGS
|
|
|
|
-Wl,-ios_simulator_version_min,7.0.0
|
|
|
|
-mios-simulator-version-min=7.0
|
2013-11-19 14:58:42 +00:00
|
|
|
-isysroot ${IOSSIM_SDK_DIR})
|
2012-09-05 09:00:03 +00:00
|
|
|
endif()
|
2012-08-29 00:13:11 +00:00
|
|
|
|
2013-01-18 16:51:07 +00:00
|
|
|
# Architectures supported by Sanitizer runtimes. Specific sanitizers may
|
|
|
|
# support only subset of these (e.g. TSan works on x86_64 only).
|
|
|
|
filter_available_targets(SANITIZER_COMMON_SUPPORTED_ARCH
|
2014-01-31 14:25:58 +00:00
|
|
|
x86_64 i386 powerpc64 arm)
|
2014-02-14 14:06:10 +00:00
|
|
|
filter_available_targets(ASAN_SUPPORTED_ARCH x86_64 i386 powerpc64)
|
2014-02-14 12:05:41 +00:00
|
|
|
filter_available_targets(DFSAN_SUPPORTED_ARCH x86_64)
|
2014-02-14 12:26:05 +00:00
|
|
|
filter_available_targets(LSAN_SUPPORTED_ARCH x86_64)
|
2014-02-14 13:02:58 +00:00
|
|
|
filter_available_targets(MSAN_SUPPORTED_ARCH x86_64)
|
2014-02-14 14:35:48 +00:00
|
|
|
filter_available_targets(TSAN_SUPPORTED_ARCH x86_64)
|
2014-02-14 12:05:41 +00:00
|
|
|
filter_available_targets(UBSAN_SUPPORTED_ARCH x86_64 i386)
|
2013-01-18 16:51:07 +00:00
|
|
|
|
2013-04-11 15:49:52 +00:00
|
|
|
add_subdirectory(include)
|
|
|
|
|
2014-02-14 13:02:58 +00:00
|
|
|
set(COMPILER_RT_LIBCXX_PATH ${LLVM_MAIN_SRC_DIR}/projects/libcxx)
|
|
|
|
if(EXISTS ${COMPILER_RT_LIBCXX_PATH}/)
|
|
|
|
set(COMPILER_RT_HAS_LIBCXX_SOURCES TRUE)
|
|
|
|
else()
|
|
|
|
set(COMPILER_RT_HAS_LIBCXX_SOURCES FALSE)
|
|
|
|
endif()
|
|
|
|
|
2012-04-04 22:12:04 +00:00
|
|
|
add_subdirectory(lib)
|
|
|
|
|
2014-02-19 11:18:47 +00:00
|
|
|
if(COMPILER_RT_INCLUDE_TESTS)
|
2014-02-14 11:00:07 +00:00
|
|
|
add_subdirectory(unittests)
|
2012-04-04 22:12:04 +00:00
|
|
|
endif()
|
2014-02-14 14:06:10 +00:00
|
|
|
add_subdirectory(test)
|