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