2010-12-10 19:47:54 +00:00
|
|
|
# See www/CMake.html for instructions on how to build libcxx with CMake.
|
|
|
|
|
|
|
|
#===============================================================================
|
|
|
|
# Setup Project
|
|
|
|
#===============================================================================
|
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
|
2015-01-26 21:56:45 +00:00
|
|
|
if(POLICY CMP0042)
|
|
|
|
cmake_policy(SET CMP0042 NEW) # Set MACOSX_RPATH=YES by default
|
|
|
|
endif()
|
2015-07-30 22:30:34 +00:00
|
|
|
if(POLICY CMP0022)
|
|
|
|
cmake_policy(SET CMP0022 NEW) # Required when interacting with LLVM and Clang
|
|
|
|
endif()
|
|
|
|
|
|
|
|
project(libcxx CXX C)
|
2015-01-26 21:56:45 +00:00
|
|
|
|
2010-12-10 19:47:54 +00:00
|
|
|
set(PACKAGE_NAME libcxx)
|
|
|
|
set(PACKAGE_VERSION trunk-svn)
|
|
|
|
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
|
2015-08-05 03:59:14 +00:00
|
|
|
set(PACKAGE_BUGREPORT "llvm-bugs@lists.llvm.org")
|
2010-12-10 19:47:54 +00:00
|
|
|
|
|
|
|
# Add path for custom modules
|
|
|
|
set(CMAKE_MODULE_PATH
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules"
|
2013-09-30 09:10:01 +00:00
|
|
|
${CMAKE_MODULE_PATH}
|
2010-12-10 19:47:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Require out of source build.
|
|
|
|
include(MacroEnsureOutOfSourceBuild)
|
|
|
|
MACRO_ENSURE_OUT_OF_SOURCE_BUILD(
|
|
|
|
"${PROJECT_NAME} requires an out of source build. Please create a separate
|
|
|
|
build directory and run 'cmake /path/to/${PROJECT_NAME} [options]' there."
|
|
|
|
)
|
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
# Find the LLVM sources and simulate LLVM CMake options.
|
|
|
|
include(HandleOutOfTreeLLVM)
|
|
|
|
if (LIBCXX_BUILT_STANDALONE AND NOT LLVM_FOUND)
|
|
|
|
message(WARNING "UNSUPPORTED LIBCXX CONFIGURATION DETECTED: "
|
|
|
|
"llvm-config not found and LLVM_PATH not defined.\n"
|
|
|
|
"Reconfigure with -DLLVM_CONFIG=path/to/llvm-config "
|
|
|
|
"or -DLLVM_PATH=path/to/llvm-source-root.")
|
2015-07-29 23:46:55 +00:00
|
|
|
endif()
|
2013-10-03 21:58:25 +00:00
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
|
2010-12-10 19:47:54 +00:00
|
|
|
#===============================================================================
|
|
|
|
# Setup CMake Options
|
|
|
|
#===============================================================================
|
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
# Basic options ---------------------------------------------------------------
|
2015-07-29 23:46:55 +00:00
|
|
|
option(LIBCXX_ENABLE_ASSERTIONS "Enable assertions independent of build mode." ON)
|
|
|
|
option(LIBCXX_ENABLE_SHARED "Build libc++ as a shared library." ON)
|
2015-07-30 22:30:34 +00:00
|
|
|
|
|
|
|
option(LIBCXX_INCLUDE_TESTS "Build the libc++ tests." ${LLVM_INCLUDE_TESTS})
|
|
|
|
set(LIBCXX_LIBDIR_SUFFIX "${LLVM_LIBDIR_SUFFIX}" CACHE STRING
|
|
|
|
"Define suffix of library directory name (32/64)")
|
|
|
|
option(LIBCXX_INSTALL_HEADERS "Install the libc++ headers." ON)
|
|
|
|
option(LIBCXX_INSTALL_SUPPORT_HEADERS "Install libc++ support headers." ON)
|
|
|
|
|
|
|
|
# ABI Library options ---------------------------------------------------------
|
|
|
|
set(LIBCXX_CXX_ABI "${LIBCXX_CXX_ABI}" CACHE STRING
|
|
|
|
"Specify C++ ABI library to use." FORCE)
|
|
|
|
set(CXXABIS none libcxxabi libcxxrt libstdc++ libsupc++)
|
|
|
|
set_property(CACHE LIBCXX_CXX_ABI PROPERTY STRINGS ;${CXXABIS})
|
|
|
|
|
|
|
|
option(LIBCXX_ENABLE_STATIC_ABI_LIBRARY "Statically link the ABI library" OFF)
|
|
|
|
|
|
|
|
# Build libc++abi with libunwind. We need this option to determine whether to
|
|
|
|
# link with libunwind or libgcc_s while running the test cases.
|
|
|
|
option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder." OFF)
|
|
|
|
|
|
|
|
# Target options --------------------------------------------------------------
|
|
|
|
option(LIBCXX_BUILD_32_BITS "Build 32 bit libc++." ${LLVM_BUILD_32_BITS})
|
|
|
|
set(LIBCXX_SYSROOT "" CACHE STRING "Use alternate sysroot.")
|
|
|
|
set(LIBCXX_GCC_TOOLCHAIN "" CACHE STRING "Use alternate GCC toolchain.")
|
|
|
|
|
|
|
|
# Feature options -------------------------------------------------------------
|
|
|
|
option(LIBCXX_ENABLE_EXCEPTIONS "Use exceptions." ON)
|
|
|
|
option(LIBCXX_ENABLE_RTTI "Use run time type information." ON)
|
Add option to disable access to the global filesystem namespace.
Systems like FreeBSD's Capsicum and Nuxi CloudABI apply the concept of
capability-based security on the way processes can interact with the
filesystem API. It is no longer possible to interact with the VFS
through calls like open(), unlink(), rename(), etc. Instead, processes
are only allowed to interact with files and directories to which they
have been granted access. The *at() functions can be used for this
purpose.
This change adds a new config switch called
_LIBCPP_HAS_NO_GLOBAL_FILESYSTEM_NAMESPACE. If set, all functionality
that requires the global filesystem namespace will be disabled. More
concretely:
- fstream's open() function will be removed.
- cstdio will no longer pull in fopen(), rename(), etc.
- The test suite's get_temp_file_name() will be removed. This will cause
all tests that use the global filesystem namespace to break, but will
at least make all the other tests run (as get_temp_file_name will not
build anyway).
It is important to mention that this change will make fstream rather
useless on those systems for now. Still, I'd rather not have fstream
disabled entirely, as it is of course possible to come up with an
extension for fstream that would allow access to local filesystem
namespaces (e.g., by adding an openat() member function).
Differential revision: http://reviews.llvm.org/D8194
Reviewed by: jroelofs (thanks!)
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@232049 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-12 15:44:39 +00:00
|
|
|
option(LIBCXX_ENABLE_GLOBAL_FILESYSTEM_NAMESPACE "Build libc++ with support for the global filesystem namespace." ON)
|
2015-03-26 14:35:46 +00:00
|
|
|
option(LIBCXX_ENABLE_STDIN "Build libc++ with support for stdin/std::cin." ON)
|
|
|
|
option(LIBCXX_ENABLE_STDOUT "Build libc++ with support for stdout/std::cout." ON)
|
2014-12-06 21:02:58 +00:00
|
|
|
option(LIBCXX_ENABLE_THREADS "Build libc++ with support for threads." ON)
|
2015-06-24 08:44:38 +00:00
|
|
|
option(LIBCXX_ENABLE_THREAD_UNSAFE_C_FUNCTIONS "Build libc++ with support for thread-unsafe C functions" ON)
|
2014-12-06 21:02:58 +00:00
|
|
|
option(LIBCXX_ENABLE_MONOTONIC_CLOCK
|
|
|
|
"Build libc++ with support for a monotonic clock.
|
|
|
|
This option may only be used when LIBCXX_ENABLE_THREADS=OFF." ON)
|
2015-07-30 22:30:34 +00:00
|
|
|
|
|
|
|
# Misc options ----------------------------------------------------------------
|
|
|
|
option(LIBCXX_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
|
|
|
|
option(LIBCXX_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
|
|
|
|
|
2015-03-31 04:15:45 +00:00
|
|
|
option(LIBCXX_GENERATE_COVERAGE "Enable generating code coverage." OFF)
|
|
|
|
set(LIBCXX_COVERAGE_LIBRARY "" CACHE STRING
|
2015-07-30 22:30:34 +00:00
|
|
|
"The Profile-rt library used to build with code coverage")
|
|
|
|
|
|
|
|
#===============================================================================
|
|
|
|
# Check option configurations
|
|
|
|
#===============================================================================
|
|
|
|
|
|
|
|
# Ensure LIBCXX_ENABLE_MONOTONIC_CLOCK is set to ON only when
|
|
|
|
# LIBCXX_ENABLE_THREADS is on.
|
|
|
|
if(LIBCXX_ENABLE_THREADS AND NOT LIBCXX_ENABLE_MONOTONIC_CLOCK)
|
|
|
|
message(FATAL_ERROR "LIBCXX_ENABLE_MONOTONIC_CLOCK can only be set to OFF"
|
|
|
|
" when LIBCXX_ENABLE_THREADS is also set to OFF.")
|
2015-07-29 21:07:28 +00:00
|
|
|
endif()
|
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
# Ensure LLVM_USE_SANITIZER is not specified when LIBCXX_GENERATE_COVERAGE
|
|
|
|
# is ON.
|
|
|
|
if (LLVM_USE_SANITIZER AND LIBCXX_GENERATE_COVERAGE)
|
|
|
|
message(FATAL_ERROR "LLVM_USE_SANITIZER cannot be used with LIBCXX_GENERATE_COVERAGE")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Set LIBCXX_BUILD_32_BITS to (LIBCXX_BUILD_32_BITS OR LLVM_BUILD_32_BITS)
|
|
|
|
# and check that we can build with 32 bits if requested.
|
|
|
|
if (CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32)
|
|
|
|
if (LIBCXX_BUILD_32_BITS AND NOT LLVM_BUILD_32_BITS) # Don't duplicate the output from LLVM
|
|
|
|
message(STATUS "Building 32 bits executables and libraries.")
|
|
|
|
endif()
|
|
|
|
elseif(LIBCXX_BUILD_32_BITS)
|
|
|
|
message(FATAL_ERROR "LIBCXX_BUILD_32_BITS=ON is not supported on this platform.")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Check that this option is not enabled on Apple and emit a usage warning.
|
2015-03-03 15:59:51 +00:00
|
|
|
if (LIBCXX_ENABLE_STATIC_ABI_LIBRARY)
|
|
|
|
if (APPLE)
|
|
|
|
message(FATAL_ERROR "LIBCXX_ENABLE_STATIC_ABI_LIBRARY is not supported on OS X")
|
|
|
|
else()
|
|
|
|
message(WARNING "LIBCXX_ENABLE_STATIC_ABI_LIBRARY is an experimental option")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2010-12-10 19:47:54 +00:00
|
|
|
#===============================================================================
|
|
|
|
# Configure System
|
|
|
|
#===============================================================================
|
|
|
|
|
2014-12-20 03:16:55 +00:00
|
|
|
set(LIBCXX_COMPILER ${CMAKE_CXX_COMPILER})
|
|
|
|
set(LIBCXX_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(LIBCXX_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
|
2014-12-29 12:15:47 +00:00
|
|
|
set(LIBCXX_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBCXX_LIBDIR_SUFFIX})
|
2014-12-20 03:16:55 +00:00
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LIBCXX_LIBRARY_DIR})
|
|
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LIBCXX_LIBRARY_DIR})
|
|
|
|
|
2014-11-15 06:26:30 +00:00
|
|
|
# Declare libc++ configuration variables.
|
|
|
|
# They are intended for use as follows:
|
|
|
|
# LIBCXX_CXX_FLAGS: General flags for both the compiler and linker.
|
|
|
|
# LIBCXX_COMPILE_FLAGS: Compile only flags.
|
|
|
|
# LIBCXX_LINK_FLAGS: Linker only flags.
|
|
|
|
set(LIBCXX_COMPILE_FLAGS "")
|
|
|
|
set(LIBCXX_LINK_FLAGS "")
|
2015-07-30 22:30:34 +00:00
|
|
|
set(LIBCXX_LIBRARIES "")
|
2014-11-15 06:26:30 +00:00
|
|
|
|
2014-11-15 17:25:23 +00:00
|
|
|
# Configure compiler.
|
|
|
|
include(config-ix)
|
2015-07-30 22:30:34 +00:00
|
|
|
|
2015-03-31 04:15:45 +00:00
|
|
|
# Configure coverage options.
|
|
|
|
if (LIBCXX_GENERATE_COVERAGE)
|
|
|
|
include(CodeCoverage)
|
|
|
|
set(CMAKE_BUILD_TYPE "COVERAGE" CACHE STRING "" FORCE)
|
|
|
|
endif()
|
2014-11-15 17:25:23 +00:00
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
|
|
|
|
|
2014-11-15 17:25:23 +00:00
|
|
|
#===============================================================================
|
|
|
|
# Setup Compiler Flags
|
|
|
|
#===============================================================================
|
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
include(HandleLibCXXABI) # Steup the ABI library flags
|
2015-07-29 00:03:51 +00:00
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
# Include macros for adding and removing libc++ flags.
|
|
|
|
include(HandleLibcxxFlags)
|
2015-07-29 21:07:28 +00:00
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
# Remove flags that may have snuck in.
|
|
|
|
remove_flags(-DNDEBUG -UNDEBUG -D_DEBUG
|
|
|
|
-stdlib=libc++ -stdlib=libstdc++ -lc++abi -m32)
|
|
|
|
|
|
|
|
# Required flags ==============================================================
|
|
|
|
add_compile_flags_if_supported(-std=c++11)
|
|
|
|
if (NOT MSVC AND NOT LIBCXX_SUPPORTS_STD_EQ_CXX11_FLAG)
|
|
|
|
message(FATAL_ERROR "C++11 is required but the compiler does not support -std=c++11")
|
2013-10-05 00:07:35 +00:00
|
|
|
endif()
|
2013-10-21 15:56:35 +00:00
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
# On all systems the system c++ standard library headers need to be excluded.
|
|
|
|
# MSVC only has -X, which disables all default includes; including the crt.
|
|
|
|
# Thus, we do nothing and hope we don't accidentally include any of the C++
|
|
|
|
# headers
|
|
|
|
add_compile_flags_if_supported(-nostdinc++)
|
|
|
|
|
|
|
|
# Target flags ================================================================
|
|
|
|
add_flags_if(LIBCXX_BUILD_32_BITS -m32)
|
|
|
|
add_flags_if(LIBCXX_TARGET_TRIPLE "-target ${LIBCXX_TARGET_TRIPLE}")
|
|
|
|
add_flags_if(LIBCXX_SYSROOT "--sysroot ${LIBCXX_SYSROOT}")
|
|
|
|
add_flags_if(LIBCXX_GCC_TOOLCHAIN "-gcc-toolchain ${LIBCXX_GCC_TOOLCHAIN}")
|
|
|
|
|
|
|
|
# Warning flags ===============================================================
|
|
|
|
add_definitions(-D_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
|
|
add_compile_flags_if_supported(
|
|
|
|
-Wall -W -Wwrite-strings
|
|
|
|
-Wno-unused-parameter -Wno-long-long
|
|
|
|
-Werror=return-type)
|
2010-12-10 19:47:54 +00:00
|
|
|
if (LIBCXX_ENABLE_WERROR)
|
2015-07-30 22:30:34 +00:00
|
|
|
add_compile_flags_if_supported(-Werror)
|
|
|
|
add_compile_flags_if_supported(-WX)
|
2015-07-31 01:25:01 +00:00
|
|
|
else()
|
|
|
|
# TODO(EricWF) Remove this. We shouldn't be suppressing errors when -Werror is
|
|
|
|
# added elsewhere.
|
|
|
|
add_compile_flags_if_supported(-Wno-error)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
|
|
|
if (LIBCXX_ENABLE_PEDANTIC)
|
2015-07-30 22:30:34 +00:00
|
|
|
add_compile_flags_if_supported(-pedantic)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
# Exception flags =============================================================
|
2010-12-10 19:47:54 +00:00
|
|
|
if (LIBCXX_ENABLE_EXCEPTIONS)
|
|
|
|
# Catches C++ exceptions only and tells the compiler to assume that extern C
|
|
|
|
# functions never throw a C++ exception.
|
2015-07-30 22:30:34 +00:00
|
|
|
add_compile_flags_if_supported(-EHsc)
|
2010-12-10 19:47:54 +00:00
|
|
|
else()
|
2015-07-30 22:30:34 +00:00
|
|
|
add_definitions(-D_LIBCPP_NO_EXCEPTIONS)
|
|
|
|
add_compile_flags_if_supported(-EHs- -EHa-)
|
|
|
|
add_compile_flags_if_supported(-fno-exceptions)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
2015-07-30 22:30:34 +00:00
|
|
|
|
|
|
|
# RTTI flags ==================================================================
|
2010-12-10 19:47:54 +00:00
|
|
|
if (NOT LIBCXX_ENABLE_RTTI)
|
2015-07-30 22:30:34 +00:00
|
|
|
add_definitions(-D_LIBCPP_NO_RTTI)
|
|
|
|
add_compile_flags_if_supported(-GR-)
|
|
|
|
add_compile_flags_if_supported(-fno-rtti)
|
2010-12-10 19:47:54 +00:00
|
|
|
endif()
|
2015-07-30 22:30:34 +00:00
|
|
|
|
|
|
|
# Assertion flags =============================================================
|
|
|
|
define_if(LIBCXX_ENABLE_ASSERTIONS -UNDEBUG)
|
|
|
|
define_if_not(LIBCXX_ENABLE_ASSERTIONS -DNDEBUG)
|
2012-08-05 17:37:39 +00:00
|
|
|
if (LIBCXX_ENABLE_ASSERTIONS)
|
2010-12-10 19:47:54 +00:00
|
|
|
# MSVC doesn't like _DEBUG on release builds. See PR 4379.
|
2015-07-30 22:30:34 +00:00
|
|
|
define_if_not(MSVC -D_DEBUG)
|
2015-07-29 23:46:55 +00:00
|
|
|
endif()
|
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
# Feature flags ===============================================================
|
|
|
|
define_if(MSVC -D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
define_if_not(LIBCXX_ENABLE_GLOBAL_FILESYSTEM_NAMESPACE -D_LIBCPP_HAS_NO_GLOBAL_FILESYSTEM_NAMESPACE)
|
|
|
|
define_if_not(LIBCXX_ENABLE_STDIN -D_LIBCPP_HAS_NO_STDIN)
|
|
|
|
define_if_not(LIBCXX_ENABLE_STDOUT -D_LIBCPP_HAS_NO_STDOUT)
|
|
|
|
define_if_not(LIBCXX_ENABLE_THREADS -D_LIBCPP_HAS_NO_THREADS)
|
|
|
|
define_if_not(LIBCXX_ENABLE_MONOTONIC_CLOCK -D_LIBCPP_HAS_NO_MONOTONIC_CLOCK)
|
|
|
|
define_if_not(LIBCXX_ENABLE_THREAD_UNSAFE_C_FUNCTIONS -D_LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS)
|
2015-07-29 23:46:55 +00:00
|
|
|
|
|
|
|
|
2015-07-30 22:30:34 +00:00
|
|
|
# Sanitizer flags
|
2010-12-10 19:47:54 +00:00
|
|
|
|
2015-07-29 23:46:55 +00:00
|
|
|
# Configure for sanitizers. If LIBCXX_BUILT_STANDALONE then we have to do
|
|
|
|
# the flag translation ourselves. Othewise LLVM's CMakeList.txt will handle it.
|
|
|
|
if (LIBCXX_BUILT_STANDALONE)
|
2015-07-30 22:30:34 +00:00
|
|
|
set(LLVM_USE_SANITIZER "" CACHE STRING
|
|
|
|
"Define the sanitizer used to build the library and tests")
|
2015-07-29 23:46:55 +00:00
|
|
|
# NOTE: LLVM_USE_SANITIZER checks for a UNIX like system instead of MSVC.
|
|
|
|
# But we don't have LLVM_ON_UNIX so checking for MSVC is the best we can do.
|
|
|
|
if (LLVM_USE_SANITIZER AND NOT MSVC)
|
2015-07-30 22:30:34 +00:00
|
|
|
add_flags_if_supported("-fno-omit-frame-pointer")
|
|
|
|
add_flags_if_supported("-gline-tables-only")
|
|
|
|
|
2015-07-29 23:46:55 +00:00
|
|
|
if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND
|
|
|
|
NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO")
|
2015-07-30 22:30:34 +00:00
|
|
|
add_flags_if_supported("-gline-tables-only")
|
2015-07-29 23:46:55 +00:00
|
|
|
endif()
|
|
|
|
if (LLVM_USE_SANITIZER STREQUAL "Address")
|
2015-07-30 22:30:34 +00:00
|
|
|
add_flags("-fsanitize=address")
|
2015-07-29 23:46:55 +00:00
|
|
|
elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?")
|
2015-07-30 22:30:34 +00:00
|
|
|
add_flags(-fsanitize=memory)
|
2015-07-29 23:46:55 +00:00
|
|
|
if (LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins")
|
2015-07-30 22:30:34 +00:00
|
|
|
add_flags("-fsanitize-memory-track-origins")
|
2015-07-29 23:46:55 +00:00
|
|
|
endif()
|
|
|
|
elseif (LLVM_USE_SANITIZER STREQUAL "Undefined")
|
2015-07-30 22:30:34 +00:00
|
|
|
add_flags("-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all")
|
2015-07-29 23:46:55 +00:00
|
|
|
elseif (LLVM_USE_SANITIZER STREQUAL "Thread")
|
2015-07-30 22:30:34 +00:00
|
|
|
add_flags(-fsanitize=thread)
|
2015-07-29 23:46:55 +00:00
|
|
|
else()
|
|
|
|
message(WARNING "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}")
|
|
|
|
endif()
|
2015-07-30 22:30:34 +00:00
|
|
|
elseif(LLVM_USE_SANITIZER AND MSVC)
|
|
|
|
message(WARNING "LLVM_USE_SANITIZER is not supported on this platform.")
|
2015-07-29 23:46:55 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2010-12-10 19:47:54 +00:00
|
|
|
#===============================================================================
|
2015-07-30 22:30:34 +00:00
|
|
|
# Setup Source Code And Tests
|
2010-12-10 19:47:54 +00:00
|
|
|
#===============================================================================
|
|
|
|
include_directories(include)
|
2013-11-15 17:18:57 +00:00
|
|
|
add_subdirectory(include)
|
2010-12-10 19:47:54 +00:00
|
|
|
add_subdirectory(lib)
|
2015-07-30 22:30:34 +00:00
|
|
|
if (LIBCXX_INCLUDE_TESTS)
|
|
|
|
add_subdirectory(test)
|
|
|
|
endif()
|