Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 1 | # See www/CMake.html for instructions on how to build libcxxabi with CMake. |
| 2 | |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 3 | #=============================================================================== |
| 4 | # Setup Project |
| 5 | #=============================================================================== |
| 6 | |
Chris Bieneman | 1d72b89 | 2016-05-31 20:21:53 | [diff] [blame] | 7 | cmake_minimum_required(VERSION 3.4.3) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 8 | |
Eric Fiselier | 42c8f93 | 2015-01-26 22:00:30 | [diff] [blame] | 9 | if(POLICY CMP0042) |
| 10 | cmake_policy(SET CMP0042 NEW) # Set MACOSX_RPATH=YES by default |
| 11 | endif() |
| 12 | |
Petr Hosek | 5f3d5be | 2017-04-07 20:10:41 | [diff] [blame] | 13 | # Add path for custom modules |
| 14 | set(CMAKE_MODULE_PATH |
| 15 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake" |
| 16 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules" |
| 17 | ${CMAKE_MODULE_PATH} |
| 18 | ) |
| 19 | |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 20 | if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 21 | project(libcxxabi CXX C) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 22 | |
| 23 | set(PACKAGE_NAME libcxxabi) |
Hans Wennborg | 4ebc5ab | 2018-01-03 15:42:34 | [diff] [blame] | 24 | set(PACKAGE_VERSION 7.0.0svn) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 25 | set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") |
Tanya Lattner | be2225f | 2015-08-05 04:01:26 | [diff] [blame] | 26 | set(PACKAGE_BUGREPORT "[email protected]") |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 27 | |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 28 | # Find the LLVM sources and simulate LLVM CMake options. |
| 29 | include(HandleOutOfTreeLLVM) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 30 | endif() |
| 31 | |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 32 | # Require out of source build. |
| 33 | include(MacroEnsureOutOfSourceBuild) |
| 34 | MACRO_ENSURE_OUT_OF_SOURCE_BUILD( |
| 35 | "${PROJECT_NAME} requires an out of source build. Please create a separate |
| 36 | build directory and run 'cmake /path/to/${PROJECT_NAME} [options]' there." |
| 37 | ) |
| 38 | |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 39 | #=============================================================================== |
| 40 | # Setup CMake Options |
| 41 | #=============================================================================== |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 42 | include(CMakeDependentOption) |
Petr Hosek | 5f3d5be | 2017-04-07 20:10:41 | [diff] [blame] | 43 | include(HandleCompilerRT) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 44 | |
| 45 | # Define options. |
Asiri Rathnayake | 57e446d | 2016-05-31 12:01:32 | [diff] [blame] | 46 | option(LIBCXXABI_ENABLE_EXCEPTIONS "Use exceptions." ON) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 47 | option(LIBCXXABI_ENABLE_ASSERTIONS "Enable assertions independent of build mode." ON) |
| 48 | option(LIBCXXABI_ENABLE_PEDANTIC "Compile with pedantic enabled." ON) |
| 49 | option(LIBCXXABI_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF) |
Saleem Abdulrasool | e5f6e2b | 2015-04-28 02:09:53 | [diff] [blame] | 50 | option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder." OFF) |
Petr Hosek | ef6f231 | 2017-02-09 02:19:30 | [diff] [blame] | 51 | option(LIBCXXABI_ENABLE_STATIC_UNWINDER "Statically link the LLVM unwinder." OFF) |
Saleem Abdulrasool | 6e2aa5e | 2016-07-15 00:49:42 | [diff] [blame] | 52 | option(LIBCXXABI_USE_COMPILER_RT "Use compiler-rt instead of libgcc" OFF) |
Eric Fiselier | 559f867 | 2014-11-24 22:42:03 | [diff] [blame] | 53 | option(LIBCXXABI_ENABLE_THREADS "Build with threads enabled" ON) |
Ben Craig | 24a9861 | 2016-05-25 17:37:38 | [diff] [blame] | 54 | option(LIBCXXABI_HAS_PTHREAD_API "Ignore auto-detection and force use of pthread API" OFF) |
Asiri Rathnayake | 97ba9fa | 2017-01-03 12:58:34 | [diff] [blame] | 55 | option(LIBCXXABI_HAS_EXTERNAL_THREAD_API |
| 56 | "Build libc++abi with an externalized threading API. |
| 57 | This option may only be set to ON when LIBCXXABI_ENABLE_THREADS=ON." OFF) |
Asiri Rathnayake | a573fe2 | 2017-01-09 11:57:21 | [diff] [blame] | 58 | option(LIBCXXABI_BUILD_EXTERNAL_THREAD_LIBRARY |
| 59 | "Build libc++abi with an externalized threading library. |
| 60 | This option may only be set to ON when LIBCXXABI_ENABLE_THREADS=ON" OFF) |
Eric Fiselier | 38643b9 | 2017-03-02 21:55:17 | [diff] [blame] | 61 | |
| 62 | # FIXME: This option should default to off. Unfortunatly GCC 4.9 fails to link |
| 63 | # programs to due undefined references to new/delete in libc++abi. Once this |
| 64 | # has been fixed or worked around the default value should be changed. |
Eric Fiselier | 2ee1d90 | 2017-03-02 19:34:35 | [diff] [blame] | 65 | option(LIBCXXABI_ENABLE_NEW_DELETE_DEFINITIONS |
| 66 | "Build libc++abi with definitions for operator new/delete. Normally libc++ |
Eric Fiselier | 38643b9 | 2017-03-02 21:55:17 | [diff] [blame] | 67 | provides these definitions" ON) |
Eric Fiselier | ffd1893 | 2016-06-02 02:18:31 | [diff] [blame] | 68 | option(LIBCXXABI_BUILD_32_BITS "Build 32 bit libc++abi." ${LLVM_BUILD_32_BITS}) |
Bryant Wong | 66b5441 | 2017-01-07 22:14:04 | [diff] [blame] | 69 | option(LIBCXXABI_INCLUDE_TESTS "Generate build targets for the libc++abi unit tests." ${LLVM_INCLUDE_TESTS}) |
Ismail Donmez | dea7590 | 2017-06-13 08:16:44 | [diff] [blame] | 70 | set(LIBCXXABI_LIBDIR_SUFFIX "${LLVM_LIBDIR_SUFFIX}" CACHE STRING |
| 71 | "Define suffix of library directory name (32/64)") |
Petr Hosek | aa96d2e | 2017-11-17 23:25:09 | [diff] [blame] | 72 | option(LIBCXXABI_INSTALL_LIBRARY "Install the libc++abi library." ON) |
Eric Fiselier | ffd1893 | 2016-06-02 02:18:31 | [diff] [blame] | 73 | set(LIBCXXABI_TARGET_TRIPLE "" CACHE STRING "Target triple for cross compiling.") |
Ben Craig | 658310b | 2016-06-01 12:50:30 | [diff] [blame] | 74 | set(LIBCXXABI_GCC_TOOLCHAIN "" CACHE PATH "GCC toolchain for cross compiling.") |
| 75 | set(LIBCXXABI_SYSROOT "" CACHE PATH "Sysroot for cross compiling.") |
| 76 | set(LIBCXXABI_LIBCXX_LIBRARY_PATH "" CACHE PATH "The path to libc++ library.") |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 77 | |
Petr Hosek | 4a1e14e | 2018-07-24 23:27:51 | [diff] [blame] | 78 | cmake_dependent_option(LIBCXXABI_INSTALL_STATIC_LIBRARY |
| 79 | "Install the static libc++abi library." ON |
| 80 | "LIBCXXABI_ENABLE_STATIC;LIBCXXABI_INSTALL_LIBRARY" OFF) |
| 81 | cmake_dependent_option(LIBCXXABI_INSTALL_SHARED_LIBRARY |
| 82 | "Install the shared libc++abi library." ON |
| 83 | "LIBCXXABI_ENABLE_SHARED;LIBCXXABI_INSTALL_LIBRARY" OFF) |
| 84 | |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 85 | # Default to building a shared library so that the default options still test |
| 86 | # the libc++abi that is being built. There are two problems with testing a |
| 87 | # static libc++abi. In the case of a standalone build, the tests will link the |
| 88 | # system's libc++, which might not have been built against our libc++abi. In the |
| 89 | # case of an in tree build, libc++ will prefer a dynamic libc++abi from the |
| 90 | # system over a static libc++abi from the output directory. |
| 91 | option(LIBCXXABI_ENABLE_SHARED "Build libc++abi as a shared library." ON) |
Eric Fiselier | 14dbeaa | 2015-03-03 15:59:09 | [diff] [blame] | 92 | option(LIBCXXABI_ENABLE_STATIC "Build libc++abi as a static library." ON) |
| 93 | |
Petr Hosek | 058c04c | 2018-07-24 07:06:17 | [diff] [blame] | 94 | cmake_dependent_option(LIBCXXABI_STATICALLY_LINK_UNWINDER_IN_STATIC_LIBRARY |
| 95 | "Statically link the LLVM unwinder to static library" ON |
| 96 | "LIBCXXABI_ENABLE_STATIC_UNWINDER;LIBCXXABI_ENABLE_STATIC" OFF) |
| 97 | cmake_dependent_option(LIBCXXABI_STATICALLY_LINK_UNWINDER_IN_SHARED_LIBRARY |
| 98 | "Statically link the LLVM unwinder to shared library" ON |
| 99 | "LIBCXXABI_ENABLE_STATIC_UNWINDER;LIBCXXABI_ENABLE_SHARED" OFF) |
| 100 | |
Ranjeet Singh | ef6e672 | 2017-03-01 11:42:01 | [diff] [blame] | 101 | option(LIBCXXABI_BAREMETAL "Build libc++abi for baremetal targets." OFF) |
| 102 | # The default terminate handler attempts to demangle uncaught exceptions, which |
| 103 | # causes extra I/O and demangling code to be pulled in. |
| 104 | option(LIBCXXABI_SILENT_TERMINATE "Set this to make the terminate handler default to a silent alternative" OFF) |
| 105 | |
Eric Fiselier | 14dbeaa | 2015-03-03 15:59:09 | [diff] [blame] | 106 | if (NOT LIBCXXABI_ENABLE_SHARED AND NOT LIBCXXABI_ENABLE_STATIC) |
| 107 | message(FATAL_ERROR "libc++abi must be built as either a shared or static library.") |
| 108 | endif() |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 109 | |
Mehdi Amini | c1f152d | 2016-11-07 22:07:43 | [diff] [blame] | 110 | if (LLVM_EXTERNAL_LIBCXX_SOURCE_DIR) |
Petr Hosek | bfb371a | 2016-11-11 19:12:58 | [diff] [blame] | 111 | set(LIBCXXABI_LIBCXX_SRC_DIRS ${LLVM_EXTERNAL_LIBCXX_SOURCE_DIR}) |
Mehdi Amini | c1f152d | 2016-11-07 22:07:43 | [diff] [blame] | 112 | else() |
Petr Hosek | bfb371a | 2016-11-11 19:12:58 | [diff] [blame] | 113 | set(LIBCXXABI_LIBCXX_SRC_DIRS |
| 114 | "${LLVM_MAIN_SRC_DIR}/projects/libcxx" |
| 115 | "${LLVM_MAIN_SRC_DIR}/runtimes/libcxx" |
Petr Hosek | 86a9ddc | 2018-04-04 17:40:59 | [diff] [blame] | 116 | "${LLVM_MAIN_SRC_DIR}/../libcxx" |
Petr Hosek | bfb371a | 2016-11-11 19:12:58 | [diff] [blame] | 117 | ) |
Mehdi Amini | c1f152d | 2016-11-07 22:07:43 | [diff] [blame] | 118 | endif() |
| 119 | |
Petr Hosek | bfb371a | 2016-11-11 19:12:58 | [diff] [blame] | 120 | set(LIBCXXABI_LIBCXX_INCLUDE_DIRS "") |
| 121 | foreach(dir ${LIBCXXABI_LIBCXX_SRC_DIRS}) |
| 122 | list(APPEND LIBCXXABI_LIBCXX_INCLUDE_DIRS "${dir}/include") |
| 123 | endforeach() |
| 124 | |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 125 | find_path( |
| 126 | LIBCXXABI_LIBCXX_INCLUDES |
Shoaib Meenai | 51d5cc9 | 2018-06-30 01:25:47 | [diff] [blame] | 127 | __config |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 128 | PATHS ${LIBCXXABI_LIBCXX_INCLUDES} |
Eric Fiselier | 753f7c3 | 2015-01-22 20:00:06 | [diff] [blame] | 129 | ${LIBCXXABI_LIBCXX_PATH}/include |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 130 | ${CMAKE_BINARY_DIR}/${LIBCXXABI_LIBCXX_INCLUDES} |
Petr Hosek | bfb371a | 2016-11-11 19:12:58 | [diff] [blame] | 131 | ${LIBCXXABI_LIBCXX_INCLUDE_DIRS} |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 132 | ${LLVM_INCLUDE_DIR}/c++/v1 |
Shoaib Meenai | 777ec37 | 2018-06-30 01:04:50 | [diff] [blame] | 133 | NO_DEFAULT_PATH |
Don Hinton | ae858bf | 2018-01-22 19:41:05 | [diff] [blame] | 134 | NO_CMAKE_FIND_ROOT_PATH |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 135 | ) |
| 136 | |
Eric Fiselier | 753f7c3 | 2015-01-22 20:00:06 | [diff] [blame] | 137 | set(LIBCXXABI_LIBCXX_INCLUDES "${LIBCXXABI_LIBCXX_INCLUDES}" CACHE PATH |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 138 | "Specify path to libc++ includes." FORCE) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 139 | |
Eric Fiselier | 753f7c3 | 2015-01-22 20:00:06 | [diff] [blame] | 140 | find_path( |
| 141 | LIBCXXABI_LIBCXX_PATH |
Petr Hosek | 460af4b | 2017-02-18 04:37:59 | [diff] [blame] | 142 | utils/libcxx/test/__init__.py |
Eric Fiselier | 753f7c3 | 2015-01-22 20:00:06 | [diff] [blame] | 143 | PATHS ${LIBCXXABI_LIBCXX_PATH} |
| 144 | ${LIBCXXABI_LIBCXX_INCLUDES}/../ |
Petr Hosek | bfb371a | 2016-11-11 19:12:58 | [diff] [blame] | 145 | ${LIBCXXABI_LIBCXX_SRC_DIRS} |
Eric Fiselier | 753f7c3 | 2015-01-22 20:00:06 | [diff] [blame] | 146 | NO_DEFAULT_PATH |
Don Hinton | ae858bf | 2018-01-22 19:41:05 | [diff] [blame] | 147 | NO_CMAKE_FIND_ROOT_PATH |
Eric Fiselier | 753f7c3 | 2015-01-22 20:00:06 | [diff] [blame] | 148 | ) |
| 149 | |
| 150 | if (LIBCXXABI_LIBCXX_PATH STREQUAL "LIBCXXABI_LIBCXX_PATH-NOTFOUND") |
| 151 | message(WARNING "LIBCXXABI_LIBCXX_PATH was not specified and couldn't be infered.") |
| 152 | set(LIBCXXABI_LIBCXX_PATH "") |
| 153 | endif() |
| 154 | |
| 155 | set(LIBCXXABI_LIBCXX_PATH "${LIBCXXABI_LIBCXX_PATH}" CACHE PATH |
| 156 | "Specify path to libc++ source." FORCE) |
| 157 | |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 158 | #=============================================================================== |
| 159 | # Configure System |
| 160 | #=============================================================================== |
| 161 | |
| 162 | # Add path for custom modules |
| 163 | set(CMAKE_MODULE_PATH |
| 164 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake" |
| 165 | "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules" |
| 166 | ${CMAKE_MODULE_PATH} |
| 167 | ) |
| 168 | |
Chandler Carruth | 24a6b05 | 2014-12-29 12:22:04 | [diff] [blame] | 169 | set(LIBCXXABI_COMPILER ${CMAKE_CXX_COMPILER}) |
| 170 | set(LIBCXXABI_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) |
| 171 | set(LIBCXXABI_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) |
Petr Hosek | 887f26d | 2018-06-28 03:11:52 | [diff] [blame] | 172 | |
| 173 | string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION |
| 174 | ${PACKAGE_VERSION}) |
| 175 | |
| 176 | if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE) |
| 177 | set(DEFAULT_INSTALL_PREFIX lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION}/${LLVM_DEFAULT_TARGET_TRIPLE}/) |
Petr Hosek | 6aae861 | 2018-07-10 19:13:33 | [diff] [blame] | 178 | set(LIBCXXABI_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/clang/${CLANG_VERSION}/${LLVM_DEFAULT_TARGET_TRIPLE}/lib${LIBCXXABI_LIBDIR_SUFFIX}) |
Petr Hosek | 887f26d | 2018-06-28 03:11:52 | [diff] [blame] | 179 | elseif(LLVM_LIBRARY_OUTPUT_INTDIR) |
Jonas Hahnfeld | 57aa0d4 | 2017-05-04 06:04:49 | [diff] [blame] | 180 | set(LIBCXXABI_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) |
| 181 | else() |
Petr Hosek | cbb4313 | 2018-07-25 16:51:00 | [diff] [blame^] | 182 | set(LIBCXXABI_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBCXXABI_LIBDIR_SUFFIX}) |
Jonas Hahnfeld | 57aa0d4 | 2017-05-04 06:04:49 | [diff] [blame] | 183 | endif() |
Chandler Carruth | 24a6b05 | 2014-12-29 12:22:04 | [diff] [blame] | 184 | |
Petr Hosek | 887f26d | 2018-06-28 03:11:52 | [diff] [blame] | 185 | set(LIBCXXABI_INSTALL_PREFIX ${DEFAULT_INSTALL_PREFIX} CACHE STRING |
Petr Hosek | 60fe579 | 2017-07-11 01:42:26 | [diff] [blame] | 186 | "Define libc++abi destination prefix.") |
| 187 | |
Ben Craig | ab56c40 | 2016-04-18 13:30:38 | [diff] [blame] | 188 | set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LIBCXXABI_LIBRARY_DIR}) |
| 189 | set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LIBCXXABI_LIBRARY_DIR}) |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 190 | set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LIBCXXABI_LIBRARY_DIR}) |
Ben Craig | ab56c40 | 2016-04-18 13:30:38 | [diff] [blame] | 191 | |
Ben Craig | 658310b | 2016-06-01 12:50:30 | [diff] [blame] | 192 | # By default, for non-standalone builds, libcxx and libcxxabi share a library |
| 193 | # directory. |
| 194 | if (NOT LIBCXXABI_LIBCXX_LIBRARY_PATH) |
| 195 | set(LIBCXXABI_LIBCXX_LIBRARY_PATH "${LIBCXXABI_LIBRARY_DIR}" CACHE PATH |
| 196 | "The path to libc++ library.") |
Eugene Zelenko | 9d09275 | 2016-08-08 17:59:02 | [diff] [blame] | 197 | endif() |
Eric Fiselier | ffd1893 | 2016-06-02 02:18:31 | [diff] [blame] | 198 | |
| 199 | # Check that we can build with 32 bits if requested. |
| 200 | if (CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32) |
| 201 | if (LIBCXXABI_BUILD_32_BITS AND NOT LLVM_BUILD_32_BITS) # Don't duplicate the output from LLVM |
| 202 | message(STATUS "Building 32 bits executables and libraries.") |
| 203 | endif() |
| 204 | elseif(LIBCXXABI_BUILD_32_BITS) |
| 205 | message(FATAL_ERROR "LIBCXXABI_BUILD_32_BITS=ON is not supported on this platform.") |
| 206 | endif() |
| 207 | |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 208 | # Declare libc++abi configuration variables. |
| 209 | # They are intended for use as follows: |
| 210 | # LIBCXXABI_C_FLAGS: General flags for both the c++ compiler and linker. |
| 211 | # LIBCXXABI_CXX_FLAGS: General flags for both the c++ compiler and linker. |
| 212 | # LIBCXXABI_COMPILE_FLAGS: Compile only flags. |
| 213 | # LIBCXXABI_LINK_FLAGS: Linker only flags. |
| 214 | # LIBCXXABI_LIBRARIES: libraries libc++abi is linked to. |
Eric Fiselier | ffd1893 | 2016-06-02 02:18:31 | [diff] [blame] | 215 | |
Logan Chien | dbcd7a3 | 2015-01-22 13:39:08 | [diff] [blame] | 216 | set(LIBCXXABI_C_FLAGS "") |
Eric Fiselier | 5cb5051 | 2014-11-18 20:37:53 | [diff] [blame] | 217 | set(LIBCXXABI_CXX_FLAGS "") |
| 218 | set(LIBCXXABI_COMPILE_FLAGS "") |
| 219 | set(LIBCXXABI_LINK_FLAGS "") |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 220 | set(LIBCXXABI_LIBRARIES "") |
| 221 | |
| 222 | # Include macros for adding and removing libc++abi flags. |
| 223 | include(HandleLibcxxabiFlags) |
| 224 | |
| 225 | #=============================================================================== |
| 226 | # Setup Compiler Flags |
| 227 | #=============================================================================== |
Eric Fiselier | 5cb5051 | 2014-11-18 20:37:53 | [diff] [blame] | 228 | |
Eric Fiselier | ffd1893 | 2016-06-02 02:18:31 | [diff] [blame] | 229 | # Configure target flags |
| 230 | add_target_flags_if(LIBCXXABI_BUILD_32_BITS "-m32") |
| 231 | add_target_flags_if(LIBCXXABI_TARGET_TRIPLE |
Petr Hosek | d3a3fb8 | 2017-04-16 06:08:34 | [diff] [blame] | 232 | "--target=${LIBCXXABI_TARGET_TRIPLE}") |
Eric Fiselier | ffd1893 | 2016-06-02 02:18:31 | [diff] [blame] | 233 | add_target_flags_if(LIBCXXABI_GCC_TOOLCHAIN |
Petr Hosek | d3a3fb8 | 2017-04-16 06:08:34 | [diff] [blame] | 234 | "--gcc-toolchain=${LIBCXXABI_GCC_TOOLCHAIN}") |
Eric Fiselier | ffd1893 | 2016-06-02 02:18:31 | [diff] [blame] | 235 | add_target_flags_if(LIBCXXABI_SYSROOT |
| 236 | "--sysroot=${LIBCXXABI_SYSROOT}") |
| 237 | |
Eric Fiselier | 79ff8f03 | 2016-11-13 22:27:00 | [diff] [blame] | 238 | if (LIBCXXABI_TARGET_TRIPLE) |
| 239 | set(TARGET_TRIPLE "${LIBCXXABI_TARGET_TRIPLE}") |
| 240 | endif() |
| 241 | |
Eric Fiselier | ffd1893 | 2016-06-02 02:18:31 | [diff] [blame] | 242 | # Configure compiler. Must happen after setting the target flags. |
| 243 | include(config-ix) |
Eric Fiselier | 5cb5051 | 2014-11-18 20:37:53 | [diff] [blame] | 244 | |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 245 | if (LIBCXXABI_HAS_NOSTDINCXX_FLAG) |
Eric Fiselier | 5cb5051 | 2014-11-18 20:37:53 | [diff] [blame] | 246 | list(APPEND LIBCXXABI_COMPILE_FLAGS -nostdinc++) |
| 247 | # Remove -stdlib flags to prevent them from causing an unused flag warning. |
| 248 | string(REPLACE "-stdlib=libc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
| 249 | string(REPLACE "-stdlib=libstdc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 250 | endif() |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 251 | |
Saleem Abdulrasool | 6e2aa5e | 2016-07-15 00:49:42 | [diff] [blame] | 252 | if (LIBCXXABI_USE_COMPILER_RT) |
| 253 | list(APPEND LIBCXXABI_LINK_FLAGS "-rtlib=compiler-rt") |
Eugene Zelenko | 9d09275 | 2016-08-08 17:59:02 | [diff] [blame] | 254 | endif() |
Eric Fiselier | 5cb5051 | 2014-11-18 20:37:53 | [diff] [blame] | 255 | |
Shoaib Meenai | 88c6acf | 2016-09-27 03:44:09 | [diff] [blame] | 256 | # Let the library headers know they are currently being used to build the |
| 257 | # library. |
| 258 | add_definitions(-D_LIBCXXABI_BUILDING_LIBRARY) |
| 259 | |
| 260 | # Disable DLL annotations on Windows for static builds. |
| 261 | if (WIN32 AND LIBCXXABI_ENABLE_STATIC AND NOT LIBCXXABI_ENABLE_SHARED) |
Martell Malone | 41119cd | 2017-05-28 22:46:50 | [diff] [blame] | 262 | add_definitions(-D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS) |
Shoaib Meenai | 88c6acf | 2016-09-27 03:44:09 | [diff] [blame] | 263 | endif() |
| 264 | |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 265 | add_compile_flags_if_supported(-Werror=return-type) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 266 | |
| 267 | # Get warning flags |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 268 | add_compile_flags_if_supported(-W) |
| 269 | add_compile_flags_if_supported(-Wall) |
| 270 | add_compile_flags_if_supported(-Wchar-subscripts) |
| 271 | add_compile_flags_if_supported(-Wconversion) |
| 272 | add_compile_flags_if_supported(-Wmismatched-tags) |
| 273 | add_compile_flags_if_supported(-Wmissing-braces) |
| 274 | add_compile_flags_if_supported(-Wnewline-eof) |
| 275 | add_compile_flags_if_supported(-Wunused-function) |
| 276 | add_compile_flags_if_supported(-Wshadow) |
| 277 | add_compile_flags_if_supported(-Wshorten-64-to-32) |
| 278 | add_compile_flags_if_supported(-Wsign-compare) |
| 279 | add_compile_flags_if_supported(-Wsign-conversion) |
| 280 | add_compile_flags_if_supported(-Wstrict-aliasing=2) |
| 281 | add_compile_flags_if_supported(-Wstrict-overflow=4) |
| 282 | add_compile_flags_if_supported(-Wunused-parameter) |
| 283 | add_compile_flags_if_supported(-Wunused-variable) |
| 284 | add_compile_flags_if_supported(-Wwrite-strings) |
| 285 | add_compile_flags_if_supported(-Wundef) |
Dan Albert | 3c4780e | 2014-07-10 22:23:03 | [diff] [blame] | 286 | |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 287 | if (LIBCXXABI_ENABLE_WERROR) |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 288 | add_compile_flags_if_supported(-Werror) |
| 289 | add_compile_flags_if_supported(-WX) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 290 | else() |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 291 | add_compile_flags_if_supported(-Wno-error) |
| 292 | add_compile_flags_if_supported(-WX-) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 293 | endif() |
| 294 | if (LIBCXXABI_ENABLE_PEDANTIC) |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 295 | add_compile_flags_if_supported(-pedantic) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 296 | endif() |
| 297 | |
| 298 | # Get feature flags. |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 299 | add_compile_flags_if_supported(-fstrict-aliasing) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 300 | |
Asiri Rathnayake | 57e446d | 2016-05-31 12:01:32 | [diff] [blame] | 301 | # Exceptions |
| 302 | if (LIBCXXABI_ENABLE_EXCEPTIONS) |
| 303 | # Catches C++ exceptions only and tells the compiler to assume that extern C |
| 304 | # functions never throw a C++ exception. |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 305 | add_compile_flags_if_supported(-EHsc) |
| 306 | # Do we really need to be run through the C compiler ? |
| 307 | add_c_compile_flags_if_supported(-funwind-tables) |
Asiri Rathnayake | 57e446d | 2016-05-31 12:01:32 | [diff] [blame] | 308 | else() |
| 309 | add_definitions(-D_LIBCXXABI_NO_EXCEPTIONS) |
Martell Malone | 062f8f0 | 2017-06-01 00:09:20 | [diff] [blame] | 310 | add_compile_flags_if_supported(-fno-exceptions) |
| 311 | add_compile_flags_if_supported(-EHs-) |
| 312 | add_compile_flags_if_supported(-EHa-) |
Asiri Rathnayake | 57e446d | 2016-05-31 12:01:32 | [diff] [blame] | 313 | endif() |
Logan Chien | dbcd7a3 | 2015-01-22 13:39:08 | [diff] [blame] | 314 | |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 315 | # Assert |
| 316 | string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) |
| 317 | if (LIBCXXABI_ENABLE_ASSERTIONS) |
| 318 | # MSVC doesn't like _DEBUG on release builds. See PR 4379. |
| 319 | if (NOT MSVC) |
Eric Fiselier | 5cb5051 | 2014-11-18 20:37:53 | [diff] [blame] | 320 | list(APPEND LIBCXXABI_COMPILE_FLAGS -D_DEBUG) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 321 | endif() |
| 322 | # On Release builds cmake automatically defines NDEBUG, so we |
| 323 | # explicitly undefine it: |
| 324 | if (uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE") |
Eric Fiselier | 5cb5051 | 2014-11-18 20:37:53 | [diff] [blame] | 325 | list(APPEND LIBCXXABI_COMPILE_FLAGS -UNDEBUG) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 326 | endif() |
| 327 | else() |
| 328 | if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE") |
Eric Fiselier | 5cb5051 | 2014-11-18 20:37:53 | [diff] [blame] | 329 | list(APPEND LIBCXXABI_COMPILE_FLAGS -DNDEBUG) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 330 | endif() |
| 331 | endif() |
| 332 | # Static library |
| 333 | if (NOT LIBCXXABI_ENABLE_SHARED) |
Eric Fiselier | 5cb5051 | 2014-11-18 20:37:53 | [diff] [blame] | 334 | list(APPEND LIBCXXABI_COMPILE_FLAGS -D_LIBCPP_BUILD_STATIC) |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 335 | endif() |
| 336 | |
Asiri Rathnayake | 97ba9fa | 2017-01-03 12:58:34 | [diff] [blame] | 337 | # Threading |
Eric Fiselier | 559f867 | 2014-11-24 22:42:03 | [diff] [blame] | 338 | if (NOT LIBCXXABI_ENABLE_THREADS) |
Ben Craig | 24a9861 | 2016-05-25 17:37:38 | [diff] [blame] | 339 | if (LIBCXXABI_HAS_PTHREAD_API) |
| 340 | message(FATAL_ERROR "LIBCXXABI_HAS_PTHREAD_API can only" |
| 341 | " be set to ON when LIBCXXABI_ENABLE_THREADS" |
| 342 | " is also set to ON.") |
| 343 | endif() |
Asiri Rathnayake | 97ba9fa | 2017-01-03 12:58:34 | [diff] [blame] | 344 | if (LIBCXXABI_HAS_EXTERNAL_THREAD_API) |
| 345 | message(FATAL_ERROR "LIBCXXABI_HAS_EXTERNAL_THREAD_API can only" |
| 346 | " be set to ON when LIBCXXABI_ENABLE_THREADS" |
| 347 | " is also set to ON.") |
| 348 | endif() |
Asiri Rathnayake | a573fe2 | 2017-01-09 11:57:21 | [diff] [blame] | 349 | if (LIBCXXABI_BUILD_EXTERNAL_THREAD_LIBRARY) |
| 350 | message(FATAL_ERROR "LIBCXXABI_BUILD_EXTERNAL_THREAD_LIBRARY can only" |
| 351 | " be set to ON when LIBCXXABI_ENABLE_THREADS" |
| 352 | " is also set to ON.") |
| 353 | endif() |
Asiri Rathnayake | 7c98baa | 2016-09-21 09:09:32 | [diff] [blame] | 354 | add_definitions(-D_LIBCXXABI_HAS_NO_THREADS) |
Eric Fiselier | 559f867 | 2014-11-24 22:42:03 | [diff] [blame] | 355 | endif() |
| 356 | |
Asiri Rathnayake | a573fe2 | 2017-01-09 11:57:21 | [diff] [blame] | 357 | if (LIBCXXABI_HAS_EXTERNAL_THREAD_API) |
| 358 | if (LIBCXXABI_HAS_PTHREAD_API) |
| 359 | message(FATAL_ERROR "The options LIBCXXABI_HAS_EXTERNAL_THREAD_API" |
| 360 | " and LIBCXXABI_HAS_PTHREAD_API cannot be both" |
| 361 | " set to ON at the same time.") |
| 362 | endif() |
| 363 | if (LIBCXXABI_BUILD_EXTERNAL_THREAD_LIBRARY) |
| 364 | message(FATAL_ERROR "The options LIBCXXABI_BUILD_EXTERNAL_THREAD_LIBRARY" |
| 365 | " and LIBCXXABI_HAS_EXTERNAL_THREAD_API cannot be both" |
| 366 | " set to ON at the same time.") |
| 367 | endif() |
Asiri Rathnayake | 97ba9fa | 2017-01-03 12:58:34 | [diff] [blame] | 368 | endif() |
| 369 | |
NAKAMURA Takumi | 83105a4 | 2017-07-31 09:35:08 | [diff] [blame] | 370 | if (LLVM_ENABLE_MODULES) |
| 371 | # Ignore that the rest of the modules flags are now unused. |
| 372 | add_compile_flags_if_supported(-Wno-unused-command-line-argument) |
| 373 | add_compile_flags(-fno-modules) |
| 374 | endif() |
| 375 | |
Eric Fiselier | 6f8d62d | 2017-03-04 02:15:37 | [diff] [blame] | 376 | set(LIBCXXABI_HAS_UNDEFINED_SYMBOLS OFF) |
| 377 | if ((NOT LIBCXXABI_ENABLE_NEW_DELETE_DEFINITIONS) |
Eric Fiselier | 70c2b1c | 2017-05-11 03:49:48 | [diff] [blame] | 378 | OR (LIBCXXABI_BUILD_EXTERNAL_THREAD_LIBRARY AND LIBCXXABI_ENABLE_SHARED) |
| 379 | OR MINGW) |
Eric Fiselier | 6f8d62d | 2017-03-04 02:15:37 | [diff] [blame] | 380 | set(LIBCXXABI_HAS_UNDEFINED_SYMBOLS ON) |
| 381 | endif() |
Eric Fiselier | 2ee1d90 | 2017-03-02 19:34:35 | [diff] [blame] | 382 | |
| 383 | if (LIBCXXABI_HAS_UNDEFINED_SYMBOLS) |
Asiri Rathnayake | 97ba9fa | 2017-01-03 12:58:34 | [diff] [blame] | 384 | # Need to allow unresolved symbols if this is to work with shared library builds |
| 385 | if (APPLE) |
Eric Fiselier | 6f8d62d | 2017-03-04 02:15:37 | [diff] [blame] | 386 | list(APPEND LIBCXXABI_LINK_FLAGS "-undefined dynamic_lookup") |
Asiri Rathnayake | 97ba9fa | 2017-01-03 12:58:34 | [diff] [blame] | 387 | else() |
| 388 | # Relax this restriction from HandleLLVMOptions |
| 389 | string(REPLACE "-Wl,-z,defs" "" CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}") |
| 390 | endif() |
| 391 | endif() |
| 392 | |
Ben Craig | 24a9861 | 2016-05-25 17:37:38 | [diff] [blame] | 393 | if (LIBCXXABI_HAS_PTHREAD_API) |
| 394 | add_definitions(-D_LIBCPP_HAS_THREAD_API_PTHREAD) |
| 395 | endif() |
| 396 | |
Asiri Rathnayake | 97ba9fa | 2017-01-03 12:58:34 | [diff] [blame] | 397 | if (LIBCXXABI_HAS_EXTERNAL_THREAD_API) |
Asiri Rathnayake | a573fe2 | 2017-01-09 11:57:21 | [diff] [blame] | 398 | add_definitions(-D_LIBCPP_HAS_THREAD_API_EXTERNAL) |
| 399 | endif() |
| 400 | |
| 401 | if (LIBCXXABI_BUILD_EXTERNAL_THREAD_LIBRARY) |
| 402 | add_definitions(-D_LIBCPP_HAS_THREAD_LIBRARY_EXTERNAL) |
Asiri Rathnayake | 97ba9fa | 2017-01-03 12:58:34 | [diff] [blame] | 403 | endif() |
| 404 | |
Shoaib Meenai | f43726c | 2017-05-10 21:52:39 | [diff] [blame] | 405 | # Prevent libc++abi from having library dependencies on libc++ |
| 406 | add_definitions(-D_LIBCPP_DISABLE_EXTERN_TEMPLATE) |
| 407 | |
Nico Weber | 297ec32 | 2018-04-29 23:05:11 | [diff] [blame] | 408 | # Bring back `std::unexpected`, which is removed in C++17, to support |
| 409 | # pre-C++17. |
| 410 | add_definitions(-D_LIBCPP_ENABLE_CXX17_REMOVED_UNEXPECTED_FUNCTIONS) |
| 411 | |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 412 | if (MSVC) |
| 413 | add_definitions(-D_CRT_SECURE_NO_WARNINGS) |
| 414 | endif() |
| 415 | |
Logan Chien | 4947eb6 | 2015-01-22 13:27:36 | [diff] [blame] | 416 | # Define LIBCXXABI_USE_LLVM_UNWINDER for conditional compilation. |
Logan Chien | 71cdd30 | 2016-11-13 14:42:15 | [diff] [blame] | 417 | if (LIBCXXABI_USE_LLVM_UNWINDER) |
Ranjeet Singh | ef6e672 | 2017-03-01 11:42:01 | [diff] [blame] | 418 | add_definitions(-DLIBCXXABI_USE_LLVM_UNWINDER) |
Logan Chien | 4947eb6 | 2015-01-22 13:27:36 | [diff] [blame] | 419 | endif() |
| 420 | |
James Y Knight | 0d3145f | 2017-01-13 19:22:26 | [diff] [blame] | 421 | if (LIBCXXABI_SILENT_TERMINATE) |
Ranjeet Singh | ef6e672 | 2017-03-01 11:42:01 | [diff] [blame] | 422 | add_definitions(-DLIBCXXABI_SILENT_TERMINATE) |
| 423 | endif() |
| 424 | |
| 425 | if (LIBCXXABI_BAREMETAL) |
| 426 | add_definitions(-DLIBCXXABI_BAREMETAL) |
James Y Knight | 0d3145f | 2017-01-13 19:22:26 | [diff] [blame] | 427 | endif() |
| 428 | |
Eric Fiselier | 5cb5051 | 2014-11-18 20:37:53 | [diff] [blame] | 429 | string(REPLACE ";" " " LIBCXXABI_CXX_FLAGS "${LIBCXXABI_CXX_FLAGS}") |
| 430 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${LIBCXXABI_CXX_FLAGS}") |
Logan Chien | dbcd7a3 | 2015-01-22 13:39:08 | [diff] [blame] | 431 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${LIBCXXABI_C_FLAGS}") |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 432 | |
| 433 | #=============================================================================== |
| 434 | # Setup Source Code |
| 435 | #=============================================================================== |
| 436 | |
Anton Korobeynikov | d3b50dc | 2015-05-08 16:10:11 | [diff] [blame] | 437 | set(LIBCXXABI_LIBUNWIND_INCLUDES "${LIBCXXABI_LIBUNWIND_INCLUDES}" CACHE PATH |
| 438 | "Specify path to libunwind includes." FORCE) |
| 439 | set(LIBCXXABI_LIBUNWIND_PATH "${LIBCXXABI_LIBUNWIND_PATH}" CACHE PATH |
| 440 | "Specify path to libunwind source." FORCE) |
| 441 | |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 442 | include_directories(include) |
Eric Fiselier | 9429684 | 2015-04-29 15:53:03 | [diff] [blame] | 443 | if (LIBCXXABI_USE_LLVM_UNWINDER OR LLVM_NATIVE_ARCH MATCHES ARM) |
Anton Korobeynikov | d3b50dc | 2015-05-08 16:10:11 | [diff] [blame] | 444 | find_path( |
Anton Korobeynikov | 1af9c7b | 2015-05-09 21:03:01 | [diff] [blame] | 445 | LIBCXXABI_LIBUNWIND_INCLUDES_INTERNAL |
Anton Korobeynikov | d3b50dc | 2015-05-08 16:10:11 | [diff] [blame] | 446 | libunwind.h |
| 447 | PATHS ${LIBCXXABI_LIBUNWIND_INCLUDES} |
| 448 | ${LIBCXXABI_LIBUNWIND_PATH}/include |
| 449 | ${CMAKE_BINARY_DIR}/${LIBCXXABI_LIBUNWIND_INCLUDES} |
| 450 | ${LLVM_MAIN_SRC_DIR}/projects/libunwind/include |
Petr Hosek | bfb371a | 2016-11-11 19:12:58 | [diff] [blame] | 451 | ${LLVM_MAIN_SRC_DIR}/runtimes/libunwind/include |
Petr Hosek | 86a9ddc | 2018-04-04 17:40:59 | [diff] [blame] | 452 | ${LLVM_MAIN_SRC_DIR}/../libunwind/include |
Anton Korobeynikov | 1af9c7b | 2015-05-09 21:03:01 | [diff] [blame] | 453 | NO_DEFAULT_PATH |
Don Hinton | ae858bf | 2018-01-22 19:41:05 | [diff] [blame] | 454 | NO_CMAKE_FIND_ROOT_PATH |
Anton Korobeynikov | d3b50dc | 2015-05-08 16:10:11 | [diff] [blame] | 455 | ) |
| 456 | |
Asiri Rathnayake | 4cc78d7 | 2017-04-04 14:03:54 | [diff] [blame] | 457 | if (LIBCXXABI_LIBUNWIND_INCLUDES_INTERNAL STREQUAL "LIBCXXABI_LIBUNWIND_INCLUDES_INTERNAL-NOTFOUND") |
| 458 | set(LIBCXXABI_LIBUNWIND_INCLUDES_INTERNAL "") |
| 459 | endif() |
| 460 | |
| 461 | if (NOT LIBCXXABI_LIBUNWIND_INCLUDES_INTERNAL STREQUAL "") |
Michal Gorny | 40180b0 | 2017-01-14 17:05:16 | [diff] [blame] | 462 | include_directories("${LIBCXXABI_LIBUNWIND_INCLUDES_INTERNAL}") |
| 463 | endif() |
Eugene Zelenko | 9d09275 | 2016-08-08 17:59:02 | [diff] [blame] | 464 | endif() |
Dan Albert | 0ed2e2f | 2014-07-03 19:35:48 | [diff] [blame] | 465 | |
| 466 | # Add source code. This also contains all of the logic for deciding linker flags |
| 467 | # soname, etc... |
| 468 | add_subdirectory(src) |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 469 | |
Don Hinton | 964ea50 | 2018-01-18 18:29:36 | [diff] [blame] | 470 | if (LIBCXXABI_INCLUDE_TESTS) |
| 471 | if (LIBCXXABI_STANDALONE_BUILD AND NOT LIBCXXABI_ENABLE_SHARED) |
| 472 | # We can't reasonably test the system C++ library with a static |
| 473 | # libc++abi. We either need to be able to replace libc++abi at |
| 474 | # run time (with a shared libc++abi), or we need to be able to |
| 475 | # replace the C++ runtime (with a non- standalone build). |
| 476 | message(WARNING "The libc++abi tests aren't valid when libc++abi " |
| 477 | "is built standalone (i.e. outside of " |
| 478 | "llvm/projects/libcxxabi ) and is built without " |
| 479 | "a shared library. Either build a shared " |
| 480 | "library, build libc++abi at the same time as " |
| 481 | "you build libc++, or do without testing. No " |
| 482 | "check target will be available!") |
| 483 | else() |
| 484 | add_subdirectory(test) |
| 485 | add_subdirectory(fuzz) |
| 486 | endif() |
Dan Albert | a770f9d | 2014-07-10 02:20:11 | [diff] [blame] | 487 | endif() |