2015-02-26 07:07:32 +08:00
|
|
|
include(CMakePushCheckState)
|
2014-02-18 15:26:58 +08:00
|
|
|
include(CheckCXXCompilerFlag)
|
2014-03-04 21:28:21 +08:00
|
|
|
include(CheckLibraryExists)
|
2014-02-27 14:52:41 +08:00
|
|
|
include(CheckSymbolExists)
|
2015-02-10 09:42:44 +08:00
|
|
|
include(TestBigEndian)
|
2014-02-18 15:26:58 +08:00
|
|
|
|
2015-05-06 04:13:39 +08:00
|
|
|
function(check_linker_flag flag out_var)
|
|
|
|
cmake_push_check_state()
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${flag}")
|
|
|
|
check_cxx_compiler_flag("" ${out_var})
|
|
|
|
cmake_pop_check_state()
|
|
|
|
endfunction()
|
|
|
|
|
2014-02-18 15:26:58 +08:00
|
|
|
# CodeGen options.
|
|
|
|
check_cxx_compiler_flag(-fPIC COMPILER_RT_HAS_FPIC_FLAG)
|
2014-02-18 16:07:09 +08:00
|
|
|
check_cxx_compiler_flag(-fPIE COMPILER_RT_HAS_FPIE_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag(-fno-builtin COMPILER_RT_HAS_FNO_BUILTIN_FLAG)
|
|
|
|
check_cxx_compiler_flag(-fno-exceptions COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG)
|
|
|
|
check_cxx_compiler_flag(-fomit-frame-pointer COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG)
|
|
|
|
check_cxx_compiler_flag(-funwind-tables COMPILER_RT_HAS_FUNWIND_TABLES_FLAG)
|
|
|
|
check_cxx_compiler_flag(-fno-stack-protector COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG)
|
2015-06-16 05:08:47 +08:00
|
|
|
check_cxx_compiler_flag(-fno-sanitize=safe-stack COMPILER_RT_HAS_FNO_SANITIZE_SAFE_STACK_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag(-fvisibility=hidden COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG)
|
2014-02-18 15:52:40 +08:00
|
|
|
check_cxx_compiler_flag(-fno-rtti COMPILER_RT_HAS_FNO_RTTI_FLAG)
|
2014-02-18 16:07:09 +08:00
|
|
|
check_cxx_compiler_flag(-ffreestanding COMPILER_RT_HAS_FFREESTANDING_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -fno-function-sections" COMPILER_RT_HAS_FNO_FUNCTION_SECTIONS_FLAG)
|
2014-03-18 20:49:22 +08:00
|
|
|
check_cxx_compiler_flag(-std=c++11 COMPILER_RT_HAS_STD_CXX11_FLAG)
|
2014-04-01 21:16:30 +08:00
|
|
|
check_cxx_compiler_flag(-ftls-model=initial-exec COMPILER_RT_HAS_FTLS_MODEL_INITIAL_EXEC)
|
2015-01-01 02:20:52 +08:00
|
|
|
check_cxx_compiler_flag(-fno-lto COMPILER_RT_HAS_FNO_LTO_FLAG)
|
2015-12-10 06:26:38 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -msse3" COMPILER_RT_HAS_MSSE3_FLAG)
|
2015-11-20 13:02:08 +08:00
|
|
|
check_cxx_compiler_flag(-std=c99 COMPILER_RT_HAS_STD_C99_FLAG)
|
2015-12-08 07:21:36 +08:00
|
|
|
check_cxx_compiler_flag(--sysroot=. COMPILER_RT_HAS_SYSROOT_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
|
2015-12-01 01:42:30 +08:00
|
|
|
if(NOT WIN32 AND NOT CYGWIN)
|
|
|
|
# MinGW warns if -fvisibility-inlines-hidden is used.
|
|
|
|
check_cxx_compiler_flag("-fvisibility-inlines-hidden" COMPILER_RT_HAS_FVISIBILITY_INLINES_HIDDEN_FLAG)
|
|
|
|
endif()
|
|
|
|
|
2014-02-18 15:52:40 +08:00
|
|
|
check_cxx_compiler_flag(/GR COMPILER_RT_HAS_GR_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag(/GS COMPILER_RT_HAS_GS_FLAG)
|
|
|
|
check_cxx_compiler_flag(/MT COMPILER_RT_HAS_MT_FLAG)
|
|
|
|
check_cxx_compiler_flag(/Oy COMPILER_RT_HAS_Oy_FLAG)
|
|
|
|
|
|
|
|
# Debug info flags.
|
|
|
|
check_cxx_compiler_flag(-gline-tables-only COMPILER_RT_HAS_GLINE_TABLES_ONLY_FLAG)
|
|
|
|
check_cxx_compiler_flag(-g COMPILER_RT_HAS_G_FLAG)
|
|
|
|
check_cxx_compiler_flag(/Zi COMPILER_RT_HAS_Zi_FLAG)
|
2015-02-03 04:37:25 +08:00
|
|
|
|
2014-02-18 15:26:58 +08:00
|
|
|
# Warnings.
|
2014-03-06 20:25:02 +08:00
|
|
|
check_cxx_compiler_flag(-Wall COMPILER_RT_HAS_WALL_FLAG)
|
2014-02-24 19:32:49 +08:00
|
|
|
check_cxx_compiler_flag(-Werror COMPILER_RT_HAS_WERROR_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -Wframe-larger-than=512" COMPILER_RT_HAS_WFRAME_LARGER_THAN_FLAG)
|
|
|
|
check_cxx_compiler_flag("-Werror -Wglobal-constructors" COMPILER_RT_HAS_WGLOBAL_CONSTRUCTORS_FLAG)
|
2014-11-14 05:19:53 +08:00
|
|
|
check_cxx_compiler_flag("-Werror -Wc99-extensions" COMPILER_RT_HAS_WC99_EXTENSIONS_FLAG)
|
|
|
|
check_cxx_compiler_flag("-Werror -Wgnu" COMPILER_RT_HAS_WGNU_FLAG)
|
|
|
|
check_cxx_compiler_flag("-Werror -Wnon-virtual-dtor" COMPILER_RT_HAS_WNON_VIRTUAL_DTOR_FLAG)
|
|
|
|
check_cxx_compiler_flag("-Werror -Wvariadic-macros" COMPILER_RT_HAS_WVARIADIC_MACROS_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
|
2014-03-13 19:31:10 +08:00
|
|
|
check_cxx_compiler_flag(/W3 COMPILER_RT_HAS_W3_FLAG)
|
2014-02-24 19:32:49 +08:00
|
|
|
check_cxx_compiler_flag(/WX COMPILER_RT_HAS_WX_FLAG)
|
2014-10-24 04:39:58 +08:00
|
|
|
check_cxx_compiler_flag(/wd4146 COMPILER_RT_HAS_WD4146_FLAG)
|
|
|
|
check_cxx_compiler_flag(/wd4291 COMPILER_RT_HAS_WD4291_FLAG)
|
2014-08-26 20:33:00 +08:00
|
|
|
check_cxx_compiler_flag(/wd4391 COMPILER_RT_HAS_WD4391_FLAG)
|
2014-02-18 15:26:58 +08:00
|
|
|
check_cxx_compiler_flag(/wd4722 COMPILER_RT_HAS_WD4722_FLAG)
|
2014-10-24 04:39:58 +08:00
|
|
|
check_cxx_compiler_flag(/wd4800 COMPILER_RT_HAS_WD4800_FLAG)
|
2014-02-27 14:52:41 +08:00
|
|
|
|
|
|
|
# Symbols.
|
|
|
|
check_symbol_exists(__func__ "" COMPILER_RT_HAS_FUNC_SYMBOL)
|
2014-03-04 21:28:21 +08:00
|
|
|
|
|
|
|
# Libraries.
|
2014-08-22 20:26:34 +08:00
|
|
|
check_library_exists(c printf "" COMPILER_RT_HAS_LIBC)
|
2014-03-04 21:28:21 +08:00
|
|
|
check_library_exists(dl dlopen "" COMPILER_RT_HAS_LIBDL)
|
2015-05-30 06:31:28 +08:00
|
|
|
check_library_exists(rt shm_open "" COMPILER_RT_HAS_LIBRT)
|
2014-08-22 20:26:34 +08:00
|
|
|
check_library_exists(m pow "" COMPILER_RT_HAS_LIBM)
|
2014-03-04 21:28:21 +08:00
|
|
|
check_library_exists(pthread pthread_create "" COMPILER_RT_HAS_LIBPTHREAD)
|
2014-08-22 20:26:34 +08:00
|
|
|
check_library_exists(stdc++ __cxa_throw "" COMPILER_RT_HAS_LIBSTDCXX)
|
2014-08-09 06:01:20 +08:00
|
|
|
|
2015-05-06 04:13:39 +08:00
|
|
|
# Linker flags.
|
|
|
|
if(ANDROID)
|
|
|
|
check_linker_flag("-Wl,-z,global" COMPILER_RT_HAS_Z_GLOBAL)
|
2015-07-25 03:00:16 +08:00
|
|
|
check_library_exists(log __android_log_write "" COMPILER_RT_HAS_LIBLOG)
|
2015-05-06 04:13:39 +08:00
|
|
|
endif()
|
|
|
|
|
2014-08-09 06:01:20 +08:00
|
|
|
# Architectures.
|
|
|
|
|
|
|
|
# List of all architectures we can target.
|
|
|
|
set(COMPILER_RT_SUPPORTED_ARCH)
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
set(SIMPLE_SOURCE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/simple.cc)
|
|
|
|
file(WRITE ${SIMPLE_SOURCE} "#include <stdlib.h>\n#include <limits>\nint main() {}\n")
|
|
|
|
|
2015-02-26 07:07:32 +08:00
|
|
|
function(check_compile_definition def argstring out_var)
|
|
|
|
if("${def}" STREQUAL "")
|
|
|
|
set(${out_var} TRUE PARENT_SCOPE)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
cmake_push_check_state()
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${argstring}")
|
|
|
|
check_symbol_exists(${def} "" ${out_var})
|
|
|
|
cmake_pop_check_state()
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
# test_target_arch(<arch> <def> <target flags...>)
|
|
|
|
# Checks if architecture is supported: runs host compiler with provided
|
|
|
|
# flags to verify that:
|
|
|
|
# 1) <def> is defined (if non-empty)
|
|
|
|
# 2) simple file can be successfully built.
|
|
|
|
# If successful, saves target flags for this architecture.
|
|
|
|
macro(test_target_arch arch def)
|
2014-08-09 06:01:20 +08:00
|
|
|
set(TARGET_${arch}_CFLAGS ${ARGN})
|
2015-02-26 07:07:32 +08:00
|
|
|
set(argstring "")
|
2014-08-21 01:12:58 +08:00
|
|
|
foreach(arg ${ARGN})
|
|
|
|
set(argstring "${argstring} ${arg}")
|
|
|
|
endforeach()
|
2015-02-26 07:07:32 +08:00
|
|
|
check_compile_definition("${def}" "${argstring}" HAS_${arch}_DEF)
|
|
|
|
if(NOT HAS_${arch}_DEF)
|
|
|
|
set(CAN_TARGET_${arch} FALSE)
|
|
|
|
else()
|
|
|
|
set(argstring "${CMAKE_EXE_LINKER_FLAGS} ${argstring}")
|
|
|
|
try_compile(CAN_TARGET_${arch} ${CMAKE_BINARY_DIR} ${SIMPLE_SOURCE}
|
|
|
|
COMPILE_DEFINITIONS "${TARGET_${arch}_CFLAGS}"
|
|
|
|
OUTPUT_VARIABLE TARGET_${arch}_OUTPUT
|
|
|
|
CMAKE_FLAGS "-DCMAKE_EXE_LINKER_FLAGS:STRING=${argstring}")
|
|
|
|
endif()
|
2014-08-09 06:01:20 +08:00
|
|
|
if(${CAN_TARGET_${arch}})
|
|
|
|
list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
|
2015-09-09 06:48:35 +08:00
|
|
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "${arch}" AND
|
|
|
|
COMPILER_RT_HAS_EXPLICIT_DEFAULT_TARGET_TRIPLE)
|
2014-08-09 06:01:20 +08:00
|
|
|
# Bail out if we cannot target the architecture we plan to test.
|
|
|
|
message(FATAL_ERROR "Cannot compile for ${arch}:\n${TARGET_${arch}_OUTPUT}")
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
2014-09-29 21:18:55 +08:00
|
|
|
# Add $arch as supported with no additional flags.
|
|
|
|
macro(add_default_target_arch arch)
|
|
|
|
set(TARGET_${arch}_CFLAGS "")
|
|
|
|
set(CAN_TARGET_${arch} 1)
|
|
|
|
list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
macro(detect_target_arch)
|
|
|
|
check_symbol_exists(__arm__ "" __ARM)
|
|
|
|
check_symbol_exists(__aarch64__ "" __AARCH64)
|
|
|
|
check_symbol_exists(__x86_64__ "" __X86_64)
|
2014-10-01 20:55:06 +08:00
|
|
|
check_symbol_exists(__i686__ "" __I686)
|
2014-09-29 21:18:55 +08:00
|
|
|
check_symbol_exists(__i386__ "" __I386)
|
|
|
|
check_symbol_exists(__mips__ "" __MIPS)
|
|
|
|
check_symbol_exists(__mips64__ "" __MIPS64)
|
|
|
|
if(__ARM)
|
|
|
|
add_default_target_arch(arm)
|
|
|
|
elseif(__AARCH64)
|
|
|
|
add_default_target_arch(aarch64)
|
|
|
|
elseif(__X86_64)
|
|
|
|
add_default_target_arch(x86_64)
|
2014-10-01 20:55:06 +08:00
|
|
|
elseif(__I686)
|
|
|
|
add_default_target_arch(i686)
|
2014-09-29 21:18:55 +08:00
|
|
|
elseif(__I386)
|
|
|
|
add_default_target_arch(i386)
|
|
|
|
elseif(__MIPS64) # must be checked before __MIPS
|
|
|
|
add_default_target_arch(mips64)
|
|
|
|
elseif(__MIPS)
|
|
|
|
add_default_target_arch(mips)
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
2015-01-30 05:32:34 +08: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.
|
|
|
|
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.")
|
|
|
|
endif()
|
|
|
|
|
2014-08-09 06:01:20 +08:00
|
|
|
# Generate the COMPILER_RT_SUPPORTED_ARCH list.
|
|
|
|
if(ANDROID)
|
2015-09-09 06:48:35 +08:00
|
|
|
# Examine compiler output to determine target architecture.
|
2014-09-29 21:18:55 +08:00
|
|
|
detect_target_arch()
|
|
|
|
set(COMPILER_RT_OS_SUFFIX "-android")
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
elseif(NOT APPLE) # Supported archs for Apple platforms are generated later
|
2015-09-09 07:13:47 +08:00
|
|
|
if("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "i[2-6]86|x86|amd64")
|
2015-01-30 05:32:34 +08:00
|
|
|
if(NOT MSVC)
|
2015-02-26 07:07:32 +08:00
|
|
|
test_target_arch(x86_64 "" "-m64")
|
2015-02-27 08:07:04 +08:00
|
|
|
# FIXME: We build runtimes for both i686 and i386, as "clang -m32" may
|
|
|
|
# target different variant than "$CMAKE_C_COMPILER -m32". This part should
|
|
|
|
# be gone after we resolve PR14109.
|
2015-07-30 11:41:05 +08:00
|
|
|
test_target_arch(i686 __i686__ "-m32")
|
2015-02-27 08:07:04 +08:00
|
|
|
test_target_arch(i386 __i386__ "-m32")
|
2015-01-30 05:32:34 +08:00
|
|
|
else()
|
2015-07-02 09:44:34 +08:00
|
|
|
if (CMAKE_SIZEOF_VOID_P EQUAL 4)
|
|
|
|
test_target_arch(i386 "" "")
|
|
|
|
else()
|
|
|
|
test_target_arch(x86_64 "" "")
|
|
|
|
endif()
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
2015-09-09 07:13:47 +08:00
|
|
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc")
|
2015-02-10 09:42:44 +08:00
|
|
|
TEST_BIG_ENDIAN(HOST_IS_BIG_ENDIAN)
|
|
|
|
if(HOST_IS_BIG_ENDIAN)
|
2015-02-26 07:07:32 +08:00
|
|
|
test_target_arch(powerpc64 "" "-m64")
|
2015-02-10 09:42:44 +08:00
|
|
|
else()
|
2015-02-26 07:07:32 +08:00
|
|
|
test_target_arch(powerpc64le "" "-m64")
|
2015-02-10 09:42:44 +08:00
|
|
|
endif()
|
2015-09-09 07:13:47 +08:00
|
|
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "mipsel|mips64el")
|
2015-04-20 20:44:01 +08:00
|
|
|
# Gcc doesn't accept -m32/-m64 so we do the next best thing and use
|
|
|
|
# -mips32r2/-mips64r2. We don't use -mips1/-mips3 because we want to match
|
|
|
|
# clang's default CPU's. In the 64-bit case, we must also specify the ABI
|
|
|
|
# since the default ABI differs between gcc and clang.
|
|
|
|
# FIXME: Ideally, we would build the N32 library too.
|
2015-09-09 07:13:47 +08:00
|
|
|
test_target_arch(mipsel "" "-mips32r2" "--target=mipsel-linux-gnu")
|
2015-10-06 17:02:38 +08:00
|
|
|
test_target_arch(mips64el "" "-mips64r2" "--target=mips64el-linux-gnu" "-mabi=n64")
|
2015-09-09 07:13:47 +08:00
|
|
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "mips")
|
|
|
|
test_target_arch(mips "" "-mips32r2" "--target=mips-linux-gnu")
|
2015-10-06 17:02:38 +08:00
|
|
|
test_target_arch(mips64 "" "-mips64r2" "--target=mips64-linux-gnu" "-mabi=n64")
|
2015-09-09 06:48:35 +08:00
|
|
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "arm")
|
2015-09-26 12:40:45 +08:00
|
|
|
test_target_arch(arm "" "-march=armv7-a" "-mfloat-abi=soft")
|
|
|
|
test_target_arch(armhf "" "-march=armv7-a" "-mfloat-abi=hard")
|
2015-09-09 06:48:35 +08:00
|
|
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "aarch32")
|
2015-02-26 07:07:32 +08:00
|
|
|
test_target_arch(aarch32 "" "-march=armv8-a")
|
2015-09-09 06:48:35 +08:00
|
|
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "aarch64")
|
2015-02-26 07:07:32 +08:00
|
|
|
test_target_arch(aarch64 "" "-march=armv8-a")
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
2014-09-29 21:18:55 +08:00
|
|
|
set(COMPILER_RT_OS_SUFFIX "")
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Takes ${ARGN} and puts only supported architectures in @out_var list.
|
|
|
|
function(filter_available_targets out_var)
|
2015-07-23 07:31:50 +08:00
|
|
|
set(archs ${${out_var}})
|
2014-08-09 06:01:20 +08:00
|
|
|
foreach(arch ${ARGN})
|
|
|
|
list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX)
|
|
|
|
if(NOT (ARCH_INDEX EQUAL -1) AND CAN_TARGET_${arch})
|
|
|
|
list(APPEND archs ${arch})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
set(${out_var} ${archs} PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|
|
|
2015-05-19 17:07:37 +08:00
|
|
|
# Returns a list of architecture specific target cflags in @out_var list.
|
2015-01-30 05:32:34 +08:00
|
|
|
function(get_target_flags_for_arch arch out_var)
|
|
|
|
list(FIND COMPILER_RT_SUPPORTED_ARCH ${arch} ARCH_INDEX)
|
|
|
|
if(ARCH_INDEX EQUAL -1)
|
|
|
|
message(FATAL_ERROR "Unsupported architecture: ${arch}")
|
|
|
|
else()
|
2015-08-21 01:32:06 +08:00
|
|
|
if (NOT APPLE)
|
|
|
|
set(${out_var} ${TARGET_${arch}_CFLAGS} PARENT_SCOPE)
|
|
|
|
else()
|
|
|
|
# This is only called in constructing cflags for tests executing on the
|
|
|
|
# host. This will need to all be cleaned up to support building tests
|
|
|
|
# for cross-targeted hardware (i.e. iOS).
|
|
|
|
set(${out_var} -arch ${arch} PARENT_SCOPE)
|
|
|
|
endif()
|
2015-01-30 05:32:34 +08:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
set(ARM64 aarch64)
|
2015-09-26 11:26:01 +08:00
|
|
|
set(ARM32 arm armhf)
|
2015-09-25 00:45:58 +08:00
|
|
|
set(X86 i386 i686)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
set(X86_64 x86_64)
|
2015-09-25 00:45:58 +08:00
|
|
|
set(MIPS32 mips mipsel)
|
|
|
|
set(MIPS64 mips64 mips64el)
|
|
|
|
set(PPC64 powerpc64 powerpc64le)
|
|
|
|
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
if(APPLE)
|
|
|
|
set(ARM64 arm64)
|
|
|
|
set(ARM32 armv7 armv7s)
|
|
|
|
set(X86_64 x86_64 x86_64h)
|
|
|
|
endif()
|
|
|
|
|
2015-10-06 17:02:38 +08:00
|
|
|
set(ALL_BUILTIN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64}
|
|
|
|
${MIPS32} ${MIPS64})
|
2015-09-25 00:45:58 +08:00
|
|
|
set(ALL_SANITIZER_COMMON_SUPPORTED_ARCH ${X86} ${X86_64} ${PPC64}
|
|
|
|
${ARM32} ${ARM64} ${MIPS32} ${MIPS64})
|
|
|
|
set(ALL_ASAN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64}
|
|
|
|
${MIPS32} ${MIPS64} ${PPC64})
|
|
|
|
set(ALL_DFSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64})
|
2015-10-21 21:08:06 +08:00
|
|
|
set(ALL_LSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64})
|
2015-09-25 00:45:58 +08:00
|
|
|
set(ALL_MSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64})
|
|
|
|
set(ALL_PROFILE_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${PPC64}
|
|
|
|
${MIPS32} ${MIPS64})
|
2015-12-09 05:54:39 +08:00
|
|
|
set(ALL_TSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64} ${PPC64})
|
2015-09-25 00:45:58 +08:00
|
|
|
set(ALL_UBSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64}
|
|
|
|
${MIPS32} ${MIPS64} ${PPC64})
|
|
|
|
set(ALL_SAFESTACK_SUPPORTED_ARCH ${X86} ${X86_64})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
include(CompilerRTDarwinUtils)
|
|
|
|
|
2015-11-11 22:53:57 +08:00
|
|
|
# On Darwin if /usr/include doesn't exist, the user probably has Xcode but not
|
|
|
|
# the command line tools. If this is the case, we need to find the OS X
|
|
|
|
# sysroot to pass to clang.
|
|
|
|
if(NOT EXISTS /usr/include)
|
|
|
|
execute_process(COMMAND xcodebuild -version -sdk macosx Path
|
|
|
|
OUTPUT_VARIABLE OSX_SYSROOT
|
|
|
|
ERROR_QUIET
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
set(OSX_SYSROOT_FLAG "-isysroot${OSX_SYSROOT}")
|
|
|
|
endif()
|
|
|
|
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
option(COMPILER_RT_ENABLE_IOS "Enable building for iOS - Experimental" Off)
|
|
|
|
|
2015-09-23 23:18:17 +08:00
|
|
|
find_darwin_sdk_dir(DARWIN_osx_SYSROOT macosx)
|
|
|
|
find_darwin_sdk_dir(DARWIN_iossim_SYSROOT iphonesimulator)
|
|
|
|
find_darwin_sdk_dir(DARWIN_ios_SYSROOT iphoneos)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
|
|
|
|
# Note: In order to target x86_64h on OS X the minimum deployment target must
|
|
|
|
# be 10.8 or higher.
|
|
|
|
set(SANITIZER_COMMON_SUPPORTED_OS osx)
|
2015-09-01 06:26:02 +08:00
|
|
|
set(BUILTIN_SUPPORTED_OS osx)
|
2015-10-01 05:23:22 +08:00
|
|
|
set(PROFILE_SUPPORTED_OS osx)
|
2015-11-03 22:13:59 +08:00
|
|
|
set(TSAN_SUPPORTED_OS osx)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
if(NOT SANITIZER_MIN_OSX_VERSION)
|
|
|
|
string(REGEX MATCH "-mmacosx-version-min=([.0-9]+)"
|
|
|
|
MACOSX_VERSION_MIN_FLAG "${CMAKE_CXX_FLAGS}")
|
|
|
|
if(MACOSX_VERSION_MIN_FLAG)
|
|
|
|
set(SANITIZER_MIN_OSX_VERSION "${CMAKE_MATCH_1}")
|
|
|
|
elseif(CMAKE_OSX_DEPLOYMENT_TARGET)
|
|
|
|
set(SANITIZER_MIN_OSX_VERSION ${CMAKE_OSX_DEPLOYMENT_TARGET})
|
|
|
|
else()
|
|
|
|
set(SANITIZER_MIN_OSX_VERSION 10.9)
|
|
|
|
endif()
|
|
|
|
if(SANITIZER_MIN_OSX_VERSION VERSION_LESS "10.7")
|
|
|
|
message(FATAL_ERROR "Too old OS X version: ${SANITIZER_MIN_OSX_VERSION}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# We're setting the flag manually for each target OS
|
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET "")
|
|
|
|
|
|
|
|
set(DARWIN_COMMON_CFLAGS -stdlib=libc++)
|
|
|
|
set(DARWIN_COMMON_LINKFLAGS
|
|
|
|
-stdlib=libc++
|
|
|
|
-lc++
|
|
|
|
-lc++abi)
|
|
|
|
|
|
|
|
set(DARWIN_osx_CFLAGS
|
|
|
|
${DARWIN_COMMON_CFLAGS}
|
|
|
|
-mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION})
|
|
|
|
set(DARWIN_osx_LINKFLAGS
|
|
|
|
${DARWIN_COMMON_LINKFLAGS}
|
|
|
|
-mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION})
|
2015-09-23 23:18:17 +08:00
|
|
|
set(DARWIN_osx_BUILTIN_MIN_VER 10.5)
|
|
|
|
set(DARWIN_osx_BUILTIN_MIN_VER_FLAG
|
|
|
|
-mmacosx-version-min=${DARWIN_osx_BUILTIN_MIN_VER})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
|
2015-09-23 23:18:17 +08:00
|
|
|
if(DARWIN_osx_SYSROOT)
|
|
|
|
list(APPEND DARWIN_osx_CFLAGS -isysroot ${DARWIN_osx_SYSROOT})
|
|
|
|
list(APPEND DARWIN_osx_LINKFLAGS -isysroot ${DARWIN_osx_SYSROOT})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Figure out which arches to use for each OS
|
|
|
|
darwin_get_toolchain_supported_archs(toolchain_arches)
|
|
|
|
message(STATUS "Toolchain supported arches: ${toolchain_arches}")
|
|
|
|
|
|
|
|
if(NOT MACOSX_VERSION_MIN_FLAG)
|
|
|
|
darwin_test_archs(osx
|
|
|
|
DARWIN_osx_ARCHS
|
|
|
|
${toolchain_arches})
|
|
|
|
message(STATUS "OSX supported arches: ${DARWIN_osx_ARCHS}")
|
|
|
|
foreach(arch ${DARWIN_osx_ARCHS})
|
|
|
|
list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
|
|
|
|
set(CAN_TARGET_${arch} 1)
|
|
|
|
endforeach()
|
|
|
|
|
2015-10-01 04:26:14 +08:00
|
|
|
# Need to build a 10.4 compatible libclang_rt
|
|
|
|
set(DARWIN_10.4_SYSROOT ${DARWIN_osx_SYSROOT})
|
|
|
|
set(DARWIN_10.4_BUILTIN_MIN_VER 10.4)
|
|
|
|
set(DARWIN_10.4_BUILTIN_MIN_VER_FLAG
|
|
|
|
-mmacosx-version-min=${DARWIN_10.4_BUILTIN_MIN_VER})
|
|
|
|
set(DARWIN_10.4_SKIP_CC_KEXT On)
|
|
|
|
darwin_test_archs(10.4
|
|
|
|
DARWIN_10.4_ARCHS
|
|
|
|
${toolchain_arches})
|
2015-10-02 02:58:59 +08:00
|
|
|
message(STATUS "OSX 10.4 supported arches: ${DARWIN_10.4_ARCHS}")
|
2015-10-10 00:47:43 +08:00
|
|
|
if(DARWIN_10.4_ARCHS)
|
2015-10-10 02:32:34 +08:00
|
|
|
# don't include the Haswell slice in the 10.4 compatibility library
|
|
|
|
list(REMOVE_ITEM DARWIN_10.4_ARCHS x86_64h)
|
2015-10-02 02:58:59 +08:00
|
|
|
list(APPEND BUILTIN_SUPPORTED_OS 10.4)
|
|
|
|
endif()
|
2015-10-01 04:26:14 +08:00
|
|
|
|
2015-09-23 23:18:17 +08:00
|
|
|
if(DARWIN_iossim_SYSROOT)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
set(DARWIN_iossim_CFLAGS
|
|
|
|
${DARWIN_COMMON_CFLAGS}
|
|
|
|
-mios-simulator-version-min=7.0
|
2015-09-23 23:18:17 +08:00
|
|
|
-isysroot ${DARWIN_iossim_SYSROOT})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
set(DARWIN_iossim_LINKFLAGS
|
|
|
|
${DARWIN_COMMON_LINKFLAGS}
|
|
|
|
-mios-simulator-version-min=7.0
|
2015-09-23 23:18:17 +08:00
|
|
|
-isysroot ${DARWIN_iossim_SYSROOT})
|
|
|
|
set(DARWIN_iossim_BUILTIN_MIN_VER 6.0)
|
|
|
|
set(DARWIN_iossim_BUILTIN_MIN_VER_FLAG
|
|
|
|
-mios-simulator-version-min=${DARWIN_iossim_BUILTIN_MIN_VER})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
|
2015-10-01 04:25:10 +08:00
|
|
|
set(DARWIN_iossim_SKIP_CC_KEXT On)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
darwin_test_archs(iossim
|
|
|
|
DARWIN_iossim_ARCHS
|
|
|
|
${toolchain_arches})
|
|
|
|
message(STATUS "iOS Simulator supported arches: ${DARWIN_iossim_ARCHS}")
|
2015-10-02 02:58:59 +08:00
|
|
|
if(DARWIN_iossim_ARCHS)
|
|
|
|
list(APPEND SANITIZER_COMMON_SUPPORTED_OS iossim)
|
2015-12-09 03:31:33 +08:00
|
|
|
list(APPEND BUILTIN_SUPPORTED_OS iossim)
|
|
|
|
list(APPEND PROFILE_SUPPORTED_OS iossim)
|
2015-10-02 02:58:59 +08:00
|
|
|
endif()
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
foreach(arch ${DARWIN_iossim_ARCHS})
|
|
|
|
list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
|
|
|
|
set(CAN_TARGET_${arch} 1)
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
|
2015-09-23 23:18:17 +08:00
|
|
|
if(DARWIN_ios_SYSROOT AND COMPILER_RT_ENABLE_IOS)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
set(DARWIN_ios_CFLAGS
|
|
|
|
${DARWIN_COMMON_CFLAGS}
|
|
|
|
-miphoneos-version-min=7.0
|
2015-09-23 23:18:17 +08:00
|
|
|
-isysroot ${DARWIN_ios_SYSROOT})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
set(DARWIN_ios_LINKFLAGS
|
|
|
|
${DARWIN_COMMON_LINKFLAGS}
|
|
|
|
-miphoneos-version-min=7.0
|
2015-09-23 23:18:17 +08:00
|
|
|
-isysroot ${DARWIN_ios_SYSROOT})
|
|
|
|
set(DARWIN_ios_BUILTIN_MIN_VER 6.0)
|
|
|
|
set(DARWIN_ios_BUILTIN_MIN_VER_FLAG
|
|
|
|
-miphoneos-version-min=${DARWIN_ios_BUILTIN_MIN_VER})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
|
|
|
|
darwin_test_archs(ios
|
|
|
|
DARWIN_ios_ARCHS
|
|
|
|
${toolchain_arches})
|
|
|
|
message(STATUS "iOS supported arches: ${DARWIN_ios_ARCHS}")
|
2015-10-02 02:58:59 +08:00
|
|
|
if(DARWIN_ios_ARCHS)
|
|
|
|
list(APPEND SANITIZER_COMMON_SUPPORTED_OS ios)
|
|
|
|
list(APPEND BUILTIN_SUPPORTED_OS ios)
|
|
|
|
list(APPEND PROFILE_SUPPORTED_OS ios)
|
|
|
|
endif()
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
foreach(arch ${DARWIN_ios_ARCHS})
|
|
|
|
list(APPEND COMPILER_RT_SUPPORTED_ARCH ${arch})
|
|
|
|
set(CAN_TARGET_${arch} 1)
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# for list_union
|
|
|
|
include(CompilerRTUtils)
|
|
|
|
|
2015-09-01 05:24:50 +08:00
|
|
|
list_union(BUILTIN_SUPPORTED_ARCH ALL_BUILTIN_SUPPORTED_ARCH toolchain_arches)
|
|
|
|
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
list_union(SANITIZER_COMMON_SUPPORTED_ARCH
|
|
|
|
ALL_SANITIZER_COMMON_SUPPORTED_ARCH
|
|
|
|
COMPILER_RT_SUPPORTED_ARCH
|
|
|
|
)
|
|
|
|
set(LSAN_COMMON_SUPPORTED_ARCH ${SANITIZER_COMMON_SUPPORTED_ARCH})
|
|
|
|
set(UBSAN_COMMON_SUPPORTED_ARCH ${SANITIZER_COMMON_SUPPORTED_ARCH})
|
|
|
|
list_union(ASAN_SUPPORTED_ARCH
|
|
|
|
ALL_ASAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
|
|
|
list_union(DFSAN_SUPPORTED_ARCH
|
|
|
|
ALL_DFSAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
|
|
|
list_union(LSAN_SUPPORTED_ARCH
|
|
|
|
ALL_LSAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
|
|
|
list_union(MSAN_SUPPORTED_ARCH
|
|
|
|
ALL_MSAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
|
|
|
list_union(PROFILE_SUPPORTED_ARCH
|
|
|
|
ALL_PROFILE_SUPPORTED_ARCH
|
2015-10-01 05:23:22 +08:00
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
list_union(TSAN_SUPPORTED_ARCH
|
|
|
|
ALL_TSAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
|
|
|
list_union(UBSAN_SUPPORTED_ARCH
|
|
|
|
ALL_UBSAN_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
|
|
|
list_union(SAFESTACK_SUPPORTED_ARCH
|
|
|
|
ALL_SAFESTACK_SUPPORTED_ARCH
|
|
|
|
SANITIZER_COMMON_SUPPORTED_ARCH)
|
|
|
|
else()
|
|
|
|
# Architectures supported by compiler-rt libraries.
|
2015-09-01 05:24:50 +08:00
|
|
|
filter_available_targets(BUILTIN_SUPPORTED_ARCH
|
|
|
|
${ALL_BUILTIN_SUPPORTED_ARCH})
|
[CMake] Add experimental support for building compiler-rt for iOS
Summary:
This is a reunification of three separate reviews D11073, D11082, D11083.
Having them separate was not constructive even though the patches were smaller because it led to fragmented conversations, and this is really all about one change.
This patch incorporates feedback from samsonov, and refactors the hacky darwin code out of the root CMakeLists.txt and int config-ix.cmake.
Reviewers: zaks.anna, bogner, kubabrecka, chandlerc, samsonov
Subscribers: jevinskie, filcab, llvm-commits
Differential Revision: http://reviews.llvm.org/D11820
llvm-svn: 244948
2015-08-14 04:38:16 +08:00
|
|
|
filter_available_targets(SANITIZER_COMMON_SUPPORTED_ARCH
|
|
|
|
${ALL_SANITIZER_COMMON_SUPPORTED_ARCH})
|
|
|
|
# LSan and UBSan common files should be available on all architectures
|
|
|
|
# supported by other sanitizers (even if they build into dummy object files).
|
|
|
|
filter_available_targets(LSAN_COMMON_SUPPORTED_ARCH
|
|
|
|
${SANITIZER_COMMON_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(UBSAN_COMMON_SUPPORTED_ARCH
|
|
|
|
${SANITIZER_COMMON_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(ASAN_SUPPORTED_ARCH ${ALL_ASAN_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(DFSAN_SUPPORTED_ARCH ${ALL_DFSAN_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(LSAN_SUPPORTED_ARCH ${ALL_LSAN_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(MSAN_SUPPORTED_ARCH ${ALL_MSAN_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(PROFILE_SUPPORTED_ARCH ${ALL_PROFILE_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(TSAN_SUPPORTED_ARCH ${ALL_TSAN_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(UBSAN_SUPPORTED_ARCH ${ALL_UBSAN_SUPPORTED_ARCH})
|
|
|
|
filter_available_targets(SAFESTACK_SUPPORTED_ARCH
|
|
|
|
${ALL_SAFESTACK_SUPPORTED_ARCH})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "Compiler-RT supported architectures: ${COMPILER_RT_SUPPORTED_ARCH}")
|
2014-08-09 06:01:20 +08:00
|
|
|
|
|
|
|
if(ANDROID)
|
|
|
|
set(OS_NAME "Android")
|
|
|
|
else()
|
|
|
|
set(OS_NAME "${CMAKE_SYSTEM_NAME}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (SANITIZER_COMMON_SUPPORTED_ARCH AND NOT LLVM_USE_SANITIZER AND
|
|
|
|
(OS_NAME MATCHES "Android|Darwin|Linux|FreeBSD" OR
|
2015-07-02 09:44:34 +08:00
|
|
|
(OS_NAME MATCHES "Windows" AND MSVC)))
|
2015-12-10 06:45:03 +08:00
|
|
|
list(APPEND DEFAULT_RUNTIMES sanitizer_common)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-10 06:45:03 +08:00
|
|
|
if (NOT OS_NAME MATCHES "Windows" OR CMAKE_SIZEOF_VOID_P EQUAL 4)
|
|
|
|
list(APPEND DEFAULT_RUNTIMES interception)
|
|
|
|
list(APPEND REQUIRES_COMMON interception)
|
2015-07-02 09:44:34 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-10 06:45:03 +08:00
|
|
|
if (ASAN_SUPPORTED_ARCH AND
|
2015-07-02 09:44:34 +08:00
|
|
|
(NOT OS_NAME MATCHES "Windows" OR CMAKE_SIZEOF_VOID_P EQUAL 4))
|
2015-12-10 06:45:03 +08:00
|
|
|
list(APPEND DEFAULT_RUNTIMES asan)
|
|
|
|
list(APPEND REQUIRES_COMMON asan)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2015-02-04 02:40:34 +08:00
|
|
|
if (OS_NAME MATCHES "Linux|FreeBSD|Windows")
|
2015-12-10 06:45:03 +08:00
|
|
|
set(COMPILER_RT_ASAN_HAS_STATIC_RUNTIME On)
|
2014-12-18 07:14:01 +08:00
|
|
|
endif()
|
|
|
|
|
2014-08-09 06:01:20 +08:00
|
|
|
# TODO: Add builtins support.
|
|
|
|
|
2015-12-10 06:45:03 +08:00
|
|
|
if (DFSAN_SUPPORTED_ARCH AND
|
2014-08-09 06:01:20 +08:00
|
|
|
OS_NAME MATCHES "Linux")
|
2015-12-10 06:45:03 +08:00
|
|
|
list(APPEND DEFAULT_RUNTIMES dfsan)
|
|
|
|
list(APPEND REQUIRES_COMMON dfsan)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-10 06:45:03 +08:00
|
|
|
if (LSAN_SUPPORTED_ARCH AND OS_NAME MATCHES "Linux|FreeBSD")
|
|
|
|
list(APPEND DEFAULT_RUNTIMES lsan)
|
|
|
|
list(APPEND REQUIRES_COMMON lsan)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-10 06:45:03 +08:00
|
|
|
if (MSAN_SUPPORTED_ARCH AND
|
2014-08-09 06:01:20 +08:00
|
|
|
OS_NAME MATCHES "Linux")
|
2015-12-10 06:45:03 +08:00
|
|
|
list(APPEND DEFAULT_RUNTIMES msan)
|
|
|
|
list(APPEND REQUIRES_COMMON msan)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if (PROFILE_SUPPORTED_ARCH AND
|
|
|
|
OS_NAME MATCHES "Darwin|Linux|FreeBSD")
|
2015-12-10 06:45:03 +08:00
|
|
|
list(APPEND DEFAULT_RUNTIMES profile)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-10 06:45:03 +08:00
|
|
|
if (TSAN_SUPPORTED_ARCH AND
|
2015-12-03 19:02:43 +08:00
|
|
|
OS_NAME MATCHES "Darwin|Linux|FreeBSD")
|
2015-12-10 06:45:03 +08:00
|
|
|
list(APPEND DEFAULT_RUNTIMES tsan)
|
|
|
|
list(APPEND REQUIRES_COMMON tsan)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
|
|
|
|
2015-12-10 06:45:03 +08:00
|
|
|
if (UBSAN_SUPPORTED_ARCH AND
|
2015-07-02 09:44:34 +08:00
|
|
|
OS_NAME MATCHES "Darwin|Linux|FreeBSD|Windows")
|
2015-12-10 06:45:03 +08:00
|
|
|
list(APPEND DEFAULT_RUNTIMES ubsan)
|
|
|
|
list(APPEND REQUIRES_COMMON ubsan)
|
2014-08-09 06:01:20 +08:00
|
|
|
endif()
|
2015-12-10 06:45:03 +08:00
|
|
|
list(APPEND DEFAULT_RUNTIMES cfi)
|
2014-08-09 06:01:20 +08:00
|
|
|
|
2015-12-10 06:45:03 +08:00
|
|
|
if (SAFESTACK_SUPPORTED_ARCH AND
|
2015-06-16 05:08:47 +08:00
|
|
|
OS_NAME MATCHES "Darwin|Linux|FreeBSD")
|
2015-12-10 06:45:03 +08:00
|
|
|
list(APPEND DEFAULT_RUNTIMES safestack)
|
|
|
|
list(APPEND REQUIRES_COMMON safestack)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(COMPILER_RT_RUNTIMES_TO_BUILD "all"
|
|
|
|
CACHE STRING "Semicolon-separated list of runtimes to build, or \"all\".")
|
|
|
|
|
|
|
|
if(COMPILER_RT_RUNTIMES_TO_BUILD STREQUAL "all")
|
|
|
|
set(COMPILER_RT_RUNTIMES_TO_BUILD ${DEFAULT_RUNTIMES})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Several of the runtimes produce object libraries that are consumed by other
|
|
|
|
# runtimes (i.e. asan relies on ubsan). If you're building a library that relies
|
|
|
|
# on common bits we need to build this full set of libraries.
|
|
|
|
list_union(SHOULD_BUILD_COMMON REQUIRES_COMMON COMPILER_RT_RUNTIMES_TO_BUILD)
|
|
|
|
|
|
|
|
if(SHOULD_BUILD_COMMON)
|
|
|
|
append_list_unique(COMPILER_RT_RUNTIMES_TO_BUILD sanitizer_common)
|
|
|
|
append_list_unique(COMPILER_RT_RUNTIMES_TO_BUILD lsan)
|
|
|
|
append_list_unique(COMPILER_RT_RUNTIMES_TO_BUILD ubsan)
|
|
|
|
append_list_unique(COMPILER_RT_RUNTIMES_TO_BUILD interception)
|
2015-06-16 05:08:47 +08:00
|
|
|
endif()
|