2020-08-24 17:01:05 +08:00
|
|
|
if (NOT IS_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/../libcxx")
|
|
|
|
message(FATAL_ERROR "libunwind requires being built in a monorepo layout with libcxx available")
|
|
|
|
endif()
|
|
|
|
|
2015-04-25 09:46:35 +08:00
|
|
|
#===============================================================================
|
2015-08-07 07:31:37 +08:00
|
|
|
# Setup Project
|
2015-04-25 09:46:35 +08:00
|
|
|
#===============================================================================
|
|
|
|
|
2020-04-22 23:15:05 +08:00
|
|
|
cmake_minimum_required(VERSION 3.13.4)
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2017-04-12 10:28:07 +08:00
|
|
|
# Add path for custom modules
|
|
|
|
set(CMAKE_MODULE_PATH
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules"
|
2020-09-29 08:37:20 +08:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/../cmake"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/../cmake/Modules"
|
2017-04-12 10:28:07 +08:00
|
|
|
${CMAKE_MODULE_PATH}
|
|
|
|
)
|
|
|
|
|
2020-08-24 17:01:05 +08:00
|
|
|
set(LIBUNWIND_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(LIBUNWIND_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
set(LIBUNWIND_LIBCXX_PATH "${CMAKE_CURRENT_LIST_DIR}/../libcxx" CACHE PATH
|
|
|
|
"Specify path to libc++ source.")
|
|
|
|
|
2019-05-30 15:34:39 +08:00
|
|
|
if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR OR LIBUNWIND_STANDALONE_BUILD)
|
2021-09-11 03:14:48 +08:00
|
|
|
# We may have an incomplete toolchain - do language support tests without
|
|
|
|
# linking.
|
|
|
|
include(EnableLanguageNolink)
|
|
|
|
project(libunwind LANGUAGES NONE)
|
|
|
|
llvm_enable_language_nolink(C CXX ASM)
|
2015-04-25 09:46:35 +08:00
|
|
|
|
|
|
|
set(PACKAGE_NAME libunwind)
|
2021-07-28 12:51:07 +08:00
|
|
|
set(PACKAGE_VERSION 14.0.0git)
|
2015-04-25 09:46:35 +08:00
|
|
|
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
|
2015-08-05 12:01:47 +08:00
|
|
|
set(PACKAGE_BUGREPORT "llvm-bugs@lists.llvm.org")
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2020-08-24 17:01:05 +08:00
|
|
|
# Add the CMake module path of libcxx so we can reuse HandleOutOfTreeLLVM.cmake
|
|
|
|
set(LIBUNWIND_LIBCXX_CMAKE_PATH "${LIBUNWIND_LIBCXX_PATH}/cmake/Modules")
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${LIBUNWIND_LIBCXX_CMAKE_PATH}")
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2020-08-24 17:01:05 +08:00
|
|
|
# In a standalone build, we don't have llvm to automatically generate the
|
|
|
|
# llvm-lit script for us. So we need to provide an explicit directory that
|
|
|
|
# the configurator should write the script into.
|
|
|
|
set(LIBUNWIND_STANDALONE_BUILD 1)
|
|
|
|
set(LLVM_LIT_OUTPUT_DIR "${LIBUNWIND_BINARY_DIR}/bin")
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2020-08-24 17:01:05 +08:00
|
|
|
# Find the LLVM sources and simulate LLVM CMake options.
|
|
|
|
include(HandleOutOfTreeLLVM)
|
2015-04-25 09:46:35 +08:00
|
|
|
else()
|
|
|
|
set(LLVM_LIT "${CMAKE_SOURCE_DIR}/utils/lit/lit.py")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
#===============================================================================
|
|
|
|
# Setup CMake Options
|
|
|
|
#===============================================================================
|
2018-07-25 07:42:51 +08:00
|
|
|
include(CMakeDependentOption)
|
2017-04-12 10:28:07 +08:00
|
|
|
include(HandleCompilerRT)
|
2015-04-25 09:46:35 +08:00
|
|
|
|
|
|
|
# Define options.
|
2016-06-02 09:02:10 +08:00
|
|
|
option(LIBUNWIND_BUILD_32_BITS "Build 32 bit libunwind" ${LLVM_BUILD_32_BITS})
|
[libunwind] Support stack unwind in CET environment
Control-flow Enforcement Technology (CET), published by Intel,
introduces shadow stack feature aiming to ensure a return from
a function is directed to where the function was called.
In a CET enabled system, each function call will push return
address into normal stack and shadow stack, when the function
returns, the address stored in shadow stack will be popped and
compared with the return address, program will fail if the 2
addresses don't match.
In exception handling, the control flow may skip some stack frames
and we must adjust shadow stack to avoid violating CET restriction.
In order to achieve this, we count the number of stack frames skipped
and adjust shadow stack by this number before jumping to landing pad.
Reviewed By: hjl.tools, compnerd, MaskRay
Differential Revision: https://reviews.llvm.org/D105968
Signed-off-by: gejin <ge.jin@intel.com>
2021-08-26 16:20:38 +08:00
|
|
|
option(LIBUNWIND_ENABLE_CET "Build libunwind with CET enabled." OFF)
|
2015-04-25 09:46:35 +08:00
|
|
|
option(LIBUNWIND_ENABLE_ASSERTIONS "Enable assertions independent of build mode." ON)
|
|
|
|
option(LIBUNWIND_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
|
|
|
|
option(LIBUNWIND_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
|
|
|
|
option(LIBUNWIND_ENABLE_SHARED "Build libunwind as a shared library." ON)
|
2016-08-09 06:55:48 +08:00
|
|
|
option(LIBUNWIND_ENABLE_STATIC "Build libunwind as a static library." ON)
|
2016-05-27 16:29:27 +08:00
|
|
|
option(LIBUNWIND_ENABLE_CROSS_UNWINDING "Enable cross-platform unwinding support." OFF)
|
2016-07-07 18:55:39 +08:00
|
|
|
option(LIBUNWIND_ENABLE_ARM_WMMX "Enable unwinding support for ARM WMMX registers." OFF)
|
2016-09-28 18:57:15 +08:00
|
|
|
option(LIBUNWIND_ENABLE_THREADS "Build libunwind with threading support." ON)
|
2019-05-14 02:45:03 +08:00
|
|
|
option(LIBUNWIND_WEAK_PTHREAD_LIB "Use weak references to refer to pthread functions." OFF)
|
2017-04-12 10:28:07 +08:00
|
|
|
option(LIBUNWIND_USE_COMPILER_RT "Use compiler-rt instead of libgcc" OFF)
|
2017-03-28 23:21:43 +08:00
|
|
|
option(LIBUNWIND_INCLUDE_DOCS "Build the libunwind documentation." ${LLVM_INCLUDE_DOCS})
|
2021-02-13 18:49:47 +08:00
|
|
|
option(LIBUNWIND_INCLUDE_TESTS "Build the libunwind tests." ${LLVM_INCLUDE_TESTS})
|
2020-07-29 18:39:41 +08:00
|
|
|
option(LIBUNWIND_IS_BAREMETAL "Build libunwind for baremetal targets." OFF)
|
2020-08-19 03:05:07 +08:00
|
|
|
option(LIBUNWIND_USE_FRAME_HEADER_CACHE "Cache frame headers for unwinding. Requires locking dl_iterate_phdr." OFF)
|
2020-11-11 17:58:41 +08:00
|
|
|
option(LIBUNWIND_REMEMBER_HEAP_ALLOC "Use heap instead of the stack for .cfi_remember_state." OFF)
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2017-08-08 08:37:59 +08:00
|
|
|
set(LIBUNWIND_LIBDIR_SUFFIX "${LLVM_LIBDIR_SUFFIX}" CACHE STRING
|
|
|
|
"Define suffix of library directory name (32/64)")
|
2017-11-18 07:29:46 +08:00
|
|
|
option(LIBUNWIND_INSTALL_LIBRARY "Install the libunwind library." ON)
|
2018-07-25 07:27:51 +08:00
|
|
|
cmake_dependent_option(LIBUNWIND_INSTALL_STATIC_LIBRARY
|
|
|
|
"Install the static libunwind library." ON
|
|
|
|
"LIBUNWIND_ENABLE_STATIC;LIBUNWIND_INSTALL_LIBRARY" OFF)
|
|
|
|
cmake_dependent_option(LIBUNWIND_INSTALL_SHARED_LIBRARY
|
|
|
|
"Install the shared libunwind library." ON
|
|
|
|
"LIBUNWIND_ENABLE_SHARED;LIBUNWIND_INSTALL_LIBRARY" OFF)
|
2021-10-13 03:59:08 +08:00
|
|
|
if(CMAKE_CXX_COMPILER_TARGET)
|
|
|
|
set(LIBUNWIND_DEFAULT_TARGET_TRIPLE "${CMAKE_CXX_COMPILER_TARGET}")
|
|
|
|
else()
|
|
|
|
set(LIBUNWIND_DEFAULT_TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}")
|
|
|
|
endif()
|
|
|
|
set(LIBUNWIND_TARGET_TRIPLE "${LIBUNWIND_DEFAULT_TARGET_TRIPLE}" CACHE STRING "Target triple for cross compiling.")
|
|
|
|
set(LIBUNWIND_GCC_TOOLCHAIN "${CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN}" CACHE PATH "GCC toolchain for cross compiling.")
|
|
|
|
set(LIBUNWIND_SYSROOT "${CMAKE_SYSROOT}" CACHE PATH "Sysroot for cross compiling.")
|
2018-02-28 02:40:04 +08:00
|
|
|
set(LIBUNWIND_TEST_LINKER_FLAGS "" CACHE STRING
|
|
|
|
"Additional linker flags for test programs.")
|
|
|
|
set(LIBUNWIND_TEST_COMPILER_FLAGS "" CACHE STRING
|
|
|
|
"Additional compiler flags for test programs.")
|
2021-10-13 02:10:02 +08:00
|
|
|
|
|
|
|
if (LIBUNWIND_ENABLE_SHARED)
|
|
|
|
set(LIBUNWIND_DEFAULT_TEST_CONFIG "llvm-libunwind-shared.cfg.in")
|
|
|
|
else()
|
|
|
|
set(LIBUNWIND_DEFAULT_TEST_CONFIG "llvm-libunwind-static.cfg.in")
|
|
|
|
endif()
|
|
|
|
set(LIBUNWIND_TEST_CONFIG "${LIBUNWIND_DEFAULT_TEST_CONFIG}" CACHE STRING
|
2021-09-30 03:26:05 +08:00
|
|
|
"The path to the Lit testing configuration to use when running the tests.
|
2021-10-13 00:46:21 +08:00
|
|
|
If a relative path is provided, it is assumed to be relative to '<monorepo>/libunwind/test/configs'.")
|
2021-09-30 03:26:05 +08:00
|
|
|
if (NOT IS_ABSOLUTE "${LIBUNWIND_TEST_CONFIG}")
|
2021-10-13 00:46:21 +08:00
|
|
|
set(LIBUNWIND_TEST_CONFIG "${CMAKE_CURRENT_SOURCE_DIR}/test/configs/${LIBUNWIND_TEST_CONFIG}")
|
2021-09-30 03:26:05 +08:00
|
|
|
endif()
|
2020-08-24 17:01:05 +08:00
|
|
|
set(LIBUNWIND_TEST_PARAMS "" CACHE STRING
|
|
|
|
"A list of parameters to run the Lit test suite with.")
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2016-08-09 06:55:48 +08:00
|
|
|
if (NOT LIBUNWIND_ENABLE_SHARED AND NOT LIBUNWIND_ENABLE_STATIC)
|
|
|
|
message(FATAL_ERROR "libunwind must be built as either a shared or static library.")
|
|
|
|
endif()
|
|
|
|
|
[libunwind] Support stack unwind in CET environment
Control-flow Enforcement Technology (CET), published by Intel,
introduces shadow stack feature aiming to ensure a return from
a function is directed to where the function was called.
In a CET enabled system, each function call will push return
address into normal stack and shadow stack, when the function
returns, the address stored in shadow stack will be popped and
compared with the return address, program will fail if the 2
addresses don't match.
In exception handling, the control flow may skip some stack frames
and we must adjust shadow stack to avoid violating CET restriction.
In order to achieve this, we count the number of stack frames skipped
and adjust shadow stack by this number before jumping to landing pad.
Reviewed By: hjl.tools, compnerd, MaskRay
Differential Revision: https://reviews.llvm.org/D105968
Signed-off-by: gejin <ge.jin@intel.com>
2021-08-26 16:20:38 +08:00
|
|
|
if (LIBUNWIND_ENABLE_CET AND MSVC)
|
|
|
|
message(FATAL_ERROR "libunwind CET support is not available for MSVC!")
|
|
|
|
endif()
|
|
|
|
|
2016-06-02 09:19:52 +08:00
|
|
|
# Check that we can build with 32 bits if requested.
|
|
|
|
if (CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32)
|
|
|
|
if (LIBUNWIND_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(LIBUNWIND_BUILD_32_BITS)
|
|
|
|
message(FATAL_ERROR "LIBUNWIND_BUILD_32_BITS=ON is not supported on this platform.")
|
|
|
|
endif()
|
|
|
|
|
[libunwind] unw_* alias fixes for ELF and Mach-O
Rename the CMake option, LIBUNWIND_HERMETIC_STATIC_LIBRARY, to
LIBUNWIND_HIDE_SYMBOLS. Rename the C macro define,
_LIBUNWIND_DISABLE_VISIBILITY_ANNOTATIONS, to _LIBUNWIND_HIDE_SYMBOLS,
because now the macro adds a .hidden directive rather than merely
suppress visibility annotations.
For ELF, when LIBUNWIND_HIDE_SYMBOLS is enabled, mark unw_getcontext as
hidden. This symbol is the only one defined using src/assembly.h's
WEAK_ALIAS macro. Other unw_* weak aliases are defined in C++ and are
already hidden.
Mach-O doesn't support weak aliases, so remove .weak_reference and
weak_import. When LIBUNWIND_HIDE_SYMBOLS is enabled, output
.private_extern for the unw_* aliases.
In assembly.h, add missing SYMBOL_NAME macro invocations, which are
used to prefix symbol names with '_' on some targets.
Fixes PR46709.
Reviewed By: #libunwind, phosek, compnerd, steven_wu
Differential Revision: https://reviews.llvm.org/D93003
2021-02-23 08:35:38 +08:00
|
|
|
option(LIBUNWIND_HIDE_SYMBOLS
|
2019-01-30 07:01:08 +08:00
|
|
|
"Do not export any symbols from the static library." OFF)
|
|
|
|
|
2015-04-25 09:46:35 +08:00
|
|
|
#===============================================================================
|
|
|
|
# Configure System
|
|
|
|
#===============================================================================
|
|
|
|
|
|
|
|
# Add path for custom modules
|
|
|
|
set(CMAKE_MODULE_PATH
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
|
|
|
|
${CMAKE_MODULE_PATH})
|
|
|
|
|
2018-06-30 04:27:40 +08:00
|
|
|
if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE)
|
2021-04-17 12:33:18 +08:00
|
|
|
set(LIBUNWIND_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/${LLVM_DEFAULT_TARGET_TRIPLE})
|
Prepare Compiler-RT for GnuInstallDirs, matching libcxx, document all
This is a second attempt at D101497, which landed as
9a9bc76c0eb72f0f2732c729a460abbd5239c2e3 but had to be reverted in
8cf7ddbdd4e5af966a369e170c73250f2e3920e7.
This issue was that in the case that `COMPILER_RT_INSTALL_PATH` is
empty, expressions like "${COMPILER_RT_INSTALL_PATH}/bin" evaluated to
"/bin" not "bin" as intended and as was originally.
One solution is to make `COMPILER_RT_INSTALL_PATH` always non-empty,
defaulting it to `CMAKE_INSTALL_PREFIX`. D99636 adopted that approach.
But, I think it is more ergonomic to allow those project-specific paths
to be relative the global ones. Also, making install paths absolute by
default inhibits the proper behavior of functions like
`GNUInstallDirs_get_absolute_install_dir` which make relative install
paths absolute in a more complicated way.
Given all this, I will define a function like the one asked for in
https://gitlab.kitware.com/cmake/cmake/-/issues/19568 (and needed for a
similar use-case).
---
Original message:
Instead of using `COMPILER_RT_INSTALL_PATH` through the CMake for
complier-rt, just use it to define variables for the subdirs which
themselves are used.
This preserves compatibility, but later on we might consider getting rid
of `COMPILER_RT_INSTALL_PATH` and just changing the defaults for the
subdir variables directly.
---
There was a seaming bug where the (non-Apple) per-target libdir was
`${target}` not `lib/${target}`. I suspect that has to do with the docs
on `COMPILER_RT_INSTALL_PATH` saying was the library dir when that's no
longer true, so I just went ahead and fixed it, allowing me to define
fewer and more sensible variables.
That last part should be the only behavior changes; everything else
should be a pure refactoring.
---
I added some documentation of these variables too. In particular, I
wanted to highlight the gotcha where `-DSomeCachePath=...` without the
`:PATH` will lead CMake to make the path absolute. See [1] for
discussion of the problem, and [2] for the brief official documentation
they added as a result.
[1]: https://cmake.org/pipermail/cmake/2015-March/060204.html
[2]: https://cmake.org/cmake/help/latest/manual/cmake.1.html#options
In 38b2dec37ee735d5409148e71ecba278caf0f969 the problem was somewhat
misidentified and so `:STRING` was used, but `:PATH` is better as it
sets the correct type from the get-go.
---
D99484 is the main thrust of the `GnuInstallDirs` work. Once this lands,
it should be feasible to follow both of these up with a simple patch for
compiler-rt analogous to the one for libcxx.
Reviewed By: phosek, #libc_abi, #libunwind
Differential Revision: https://reviews.llvm.org/D105765
2021-04-29 06:36:47 +08:00
|
|
|
set(LIBUNWIND_INSTALL_LIBRARY_DIR lib${LLVM_LIBDIR_SUFFIX}/${LLVM_DEFAULT_TARGET_TRIPLE} CACHE PATH
|
|
|
|
"Path where built libunwind libraries should be installed.")
|
2021-08-11 18:44:06 +08:00
|
|
|
set(LIBUNWIND_INSTALL_RUNTIME_DIR bin CACHE PATH
|
|
|
|
"Path where built libunwind runtime libraries should be installed.")
|
2019-05-23 05:08:33 +08:00
|
|
|
if(LIBCXX_LIBDIR_SUBDIR)
|
|
|
|
string(APPEND LIBUNWIND_LIBRARY_DIR /${LIBUNWIND_LIBDIR_SUBDIR})
|
|
|
|
string(APPEND LIBUNWIND_INSTALL_LIBRARY_DIR /${LIBUNWIND_LIBDIR_SUBDIR})
|
|
|
|
endif()
|
2018-06-30 04:27:40 +08:00
|
|
|
elseif(LLVM_LIBRARY_OUTPUT_INTDIR)
|
2017-07-19 05:30:18 +08:00
|
|
|
set(LIBUNWIND_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
|
Prepare Compiler-RT for GnuInstallDirs, matching libcxx, document all
This is a second attempt at D101497, which landed as
9a9bc76c0eb72f0f2732c729a460abbd5239c2e3 but had to be reverted in
8cf7ddbdd4e5af966a369e170c73250f2e3920e7.
This issue was that in the case that `COMPILER_RT_INSTALL_PATH` is
empty, expressions like "${COMPILER_RT_INSTALL_PATH}/bin" evaluated to
"/bin" not "bin" as intended and as was originally.
One solution is to make `COMPILER_RT_INSTALL_PATH` always non-empty,
defaulting it to `CMAKE_INSTALL_PREFIX`. D99636 adopted that approach.
But, I think it is more ergonomic to allow those project-specific paths
to be relative the global ones. Also, making install paths absolute by
default inhibits the proper behavior of functions like
`GNUInstallDirs_get_absolute_install_dir` which make relative install
paths absolute in a more complicated way.
Given all this, I will define a function like the one asked for in
https://gitlab.kitware.com/cmake/cmake/-/issues/19568 (and needed for a
similar use-case).
---
Original message:
Instead of using `COMPILER_RT_INSTALL_PATH` through the CMake for
complier-rt, just use it to define variables for the subdirs which
themselves are used.
This preserves compatibility, but later on we might consider getting rid
of `COMPILER_RT_INSTALL_PATH` and just changing the defaults for the
subdir variables directly.
---
There was a seaming bug where the (non-Apple) per-target libdir was
`${target}` not `lib/${target}`. I suspect that has to do with the docs
on `COMPILER_RT_INSTALL_PATH` saying was the library dir when that's no
longer true, so I just went ahead and fixed it, allowing me to define
fewer and more sensible variables.
That last part should be the only behavior changes; everything else
should be a pure refactoring.
---
I added some documentation of these variables too. In particular, I
wanted to highlight the gotcha where `-DSomeCachePath=...` without the
`:PATH` will lead CMake to make the path absolute. See [1] for
discussion of the problem, and [2] for the brief official documentation
they added as a result.
[1]: https://cmake.org/pipermail/cmake/2015-March/060204.html
[2]: https://cmake.org/cmake/help/latest/manual/cmake.1.html#options
In 38b2dec37ee735d5409148e71ecba278caf0f969 the problem was somewhat
misidentified and so `:STRING` was used, but `:PATH` is better as it
sets the correct type from the get-go.
---
D99484 is the main thrust of the `GnuInstallDirs` work. Once this lands,
it should be feasible to follow both of these up with a simple patch for
compiler-rt analogous to the one for libcxx.
Reviewed By: phosek, #libc_abi, #libunwind
Differential Revision: https://reviews.llvm.org/D105765
2021-04-29 06:36:47 +08:00
|
|
|
set(LIBUNWIND_INSTALL_LIBRARY_DIR lib${LIBUNWIND_LIBDIR_SUFFIX} CACHE PATH
|
|
|
|
"Path where built libunwind libraries should be installed.")
|
2021-08-11 18:44:06 +08:00
|
|
|
set(LIBUNWIND_INSTALL_RUNTIME_DIR bin CACHE PATH
|
|
|
|
"Path where built libunwind runtime libraries should be installed.")
|
2017-07-19 05:30:18 +08:00
|
|
|
else()
|
2017-08-08 08:37:59 +08:00
|
|
|
set(LIBUNWIND_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBUNWIND_LIBDIR_SUFFIX})
|
Prepare Compiler-RT for GnuInstallDirs, matching libcxx, document all
This is a second attempt at D101497, which landed as
9a9bc76c0eb72f0f2732c729a460abbd5239c2e3 but had to be reverted in
8cf7ddbdd4e5af966a369e170c73250f2e3920e7.
This issue was that in the case that `COMPILER_RT_INSTALL_PATH` is
empty, expressions like "${COMPILER_RT_INSTALL_PATH}/bin" evaluated to
"/bin" not "bin" as intended and as was originally.
One solution is to make `COMPILER_RT_INSTALL_PATH` always non-empty,
defaulting it to `CMAKE_INSTALL_PREFIX`. D99636 adopted that approach.
But, I think it is more ergonomic to allow those project-specific paths
to be relative the global ones. Also, making install paths absolute by
default inhibits the proper behavior of functions like
`GNUInstallDirs_get_absolute_install_dir` which make relative install
paths absolute in a more complicated way.
Given all this, I will define a function like the one asked for in
https://gitlab.kitware.com/cmake/cmake/-/issues/19568 (and needed for a
similar use-case).
---
Original message:
Instead of using `COMPILER_RT_INSTALL_PATH` through the CMake for
complier-rt, just use it to define variables for the subdirs which
themselves are used.
This preserves compatibility, but later on we might consider getting rid
of `COMPILER_RT_INSTALL_PATH` and just changing the defaults for the
subdir variables directly.
---
There was a seaming bug where the (non-Apple) per-target libdir was
`${target}` not `lib/${target}`. I suspect that has to do with the docs
on `COMPILER_RT_INSTALL_PATH` saying was the library dir when that's no
longer true, so I just went ahead and fixed it, allowing me to define
fewer and more sensible variables.
That last part should be the only behavior changes; everything else
should be a pure refactoring.
---
I added some documentation of these variables too. In particular, I
wanted to highlight the gotcha where `-DSomeCachePath=...` without the
`:PATH` will lead CMake to make the path absolute. See [1] for
discussion of the problem, and [2] for the brief official documentation
they added as a result.
[1]: https://cmake.org/pipermail/cmake/2015-March/060204.html
[2]: https://cmake.org/cmake/help/latest/manual/cmake.1.html#options
In 38b2dec37ee735d5409148e71ecba278caf0f969 the problem was somewhat
misidentified and so `:STRING` was used, but `:PATH` is better as it
sets the correct type from the get-go.
---
D99484 is the main thrust of the `GnuInstallDirs` work. Once this lands,
it should be feasible to follow both of these up with a simple patch for
compiler-rt analogous to the one for libcxx.
Reviewed By: phosek, #libc_abi, #libunwind
Differential Revision: https://reviews.llvm.org/D105765
2021-04-29 06:36:47 +08:00
|
|
|
set(LIBUNWIND_INSTALL_LIBRARY_DIR lib${LIBUNWIND_LIBDIR_SUFFIX} CACHE PATH
|
|
|
|
"Path where built libunwind libraries should be installed.")
|
2021-08-11 18:44:06 +08:00
|
|
|
set(LIBUNWIND_INSTALL_RUNTIME_DIR bin CACHE PATH
|
|
|
|
"Path where built libunwind runtime libraries should be installed.")
|
2017-07-19 05:30:18 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LIBUNWIND_LIBRARY_DIR})
|
|
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LIBUNWIND_LIBRARY_DIR})
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LIBUNWIND_LIBRARY_DIR})
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2016-06-02 09:02:10 +08:00
|
|
|
set(LIBUNWIND_C_FLAGS "")
|
|
|
|
set(LIBUNWIND_CXX_FLAGS "")
|
|
|
|
set(LIBUNWIND_COMPILE_FLAGS "")
|
|
|
|
set(LIBUNWIND_LINK_FLAGS "")
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2019-10-12 06:22:29 +08:00
|
|
|
# Include macros for adding and removing libunwind flags.
|
|
|
|
include(HandleLibunwindFlags)
|
|
|
|
|
|
|
|
#===============================================================================
|
|
|
|
# Setup Compiler Flags
|
|
|
|
#===============================================================================
|
2016-06-02 09:02:10 +08:00
|
|
|
|
2019-10-12 06:22:29 +08:00
|
|
|
# Get required flags.
|
2016-06-02 09:02:10 +08:00
|
|
|
add_target_flags_if(LIBUNWIND_BUILD_32_BITS "-m32")
|
[CMake] Support CMake variables for setting target, sysroot and toolchain
CMake has a standard way of setting target triple, sysroot and external
toolchain through CMAKE_<LANG>_COMPILER_TARGET, CMAKE_SYSROOT and
CMAKE_<LANG>_COMPILER_EXTERNAL_TOOLCHAIN. These are turned into
corresponding --target=, --sysroot= and --gcc-toolchain= variables add
included appended to CMAKE_<LANG>_FLAGS.
libunwind, libc++abi, libc++ provides their own mechanism through
<PROJECT>_TARGET_TRIPLE, <PROJECT>_SYSROOT and <PROJECT>_GCC_TOOLCHAIN
variables. These are also passed to lit via lit.site.cfg, and lit config
uses these to set the corresponding compiler flags when building tessts.
This means that there are two different ways of setting target, sysroot
and toolchain, but only one is properly supported in lit. This change
extends CMake build for libunwind, libc++abi and libc++ to also support
the CMake variables in addition to project specific ones in lit.
Differential Revision: https://reviews.llvm.org/D57670
llvm-svn: 353084
2019-02-05 04:02:26 +08:00
|
|
|
|
2021-09-11 03:14:48 +08:00
|
|
|
# Compiler tests may be failing if the compiler implicitly links in libunwind,
|
|
|
|
# which doesn't exist yet. This gets waived by --unwindlib=none
|
|
|
|
# later in config-ix below, but the tests for --target etc before that may
|
|
|
|
# be failing due to it. Only test compilation, not linking, for these
|
|
|
|
# tests here now.
|
|
|
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE_ORIG ${CMAKE_TRY_COMPILE_TARGET_TYPE})
|
|
|
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
|
|
|
|
|
[CMake] Support CMake variables for setting target, sysroot and toolchain
CMake has a standard way of setting target triple, sysroot and external
toolchain through CMAKE_<LANG>_COMPILER_TARGET, CMAKE_SYSROOT and
CMAKE_<LANG>_COMPILER_EXTERNAL_TOOLCHAIN. These are turned into
corresponding --target=, --sysroot= and --gcc-toolchain= variables add
included appended to CMAKE_<LANG>_FLAGS.
libunwind, libc++abi, libc++ provides their own mechanism through
<PROJECT>_TARGET_TRIPLE, <PROJECT>_SYSROOT and <PROJECT>_GCC_TOOLCHAIN
variables. These are also passed to lit via lit.site.cfg, and lit config
uses these to set the corresponding compiler flags when building tessts.
This means that there are two different ways of setting target, sysroot
and toolchain, but only one is properly supported in lit. This change
extends CMake build for libunwind, libc++abi and libc++ to also support
the CMake variables in addition to project specific ones in lit.
Differential Revision: https://reviews.llvm.org/D57670
llvm-svn: 353084
2019-02-05 04:02:26 +08:00
|
|
|
if(LIBUNWIND_TARGET_TRIPLE)
|
2021-07-16 01:02:43 +08:00
|
|
|
add_target_flags_if_supported("--target=${LIBUNWIND_TARGET_TRIPLE}")
|
[CMake] Support CMake variables for setting target, sysroot and toolchain
CMake has a standard way of setting target triple, sysroot and external
toolchain through CMAKE_<LANG>_COMPILER_TARGET, CMAKE_SYSROOT and
CMAKE_<LANG>_COMPILER_EXTERNAL_TOOLCHAIN. These are turned into
corresponding --target=, --sysroot= and --gcc-toolchain= variables add
included appended to CMAKE_<LANG>_FLAGS.
libunwind, libc++abi, libc++ provides their own mechanism through
<PROJECT>_TARGET_TRIPLE, <PROJECT>_SYSROOT and <PROJECT>_GCC_TOOLCHAIN
variables. These are also passed to lit via lit.site.cfg, and lit config
uses these to set the corresponding compiler flags when building tessts.
This means that there are two different ways of setting target, sysroot
and toolchain, but only one is properly supported in lit. This change
extends CMake build for libunwind, libc++abi and libc++ to also support
the CMake variables in addition to project specific ones in lit.
Differential Revision: https://reviews.llvm.org/D57670
llvm-svn: 353084
2019-02-05 04:02:26 +08:00
|
|
|
endif()
|
|
|
|
if(LIBUNWIND_GCC_TOOLCHAIN)
|
2021-07-16 01:02:43 +08:00
|
|
|
add_target_flags_if_supported("--gcc-toolchain=${LIBUNWIND_GCC_TOOLCHAIN}")
|
[CMake] Support CMake variables for setting target, sysroot and toolchain
CMake has a standard way of setting target triple, sysroot and external
toolchain through CMAKE_<LANG>_COMPILER_TARGET, CMAKE_SYSROOT and
CMAKE_<LANG>_COMPILER_EXTERNAL_TOOLCHAIN. These are turned into
corresponding --target=, --sysroot= and --gcc-toolchain= variables add
included appended to CMAKE_<LANG>_FLAGS.
libunwind, libc++abi, libc++ provides their own mechanism through
<PROJECT>_TARGET_TRIPLE, <PROJECT>_SYSROOT and <PROJECT>_GCC_TOOLCHAIN
variables. These are also passed to lit via lit.site.cfg, and lit config
uses these to set the corresponding compiler flags when building tessts.
This means that there are two different ways of setting target, sysroot
and toolchain, but only one is properly supported in lit. This change
extends CMake build for libunwind, libc++abi and libc++ to also support
the CMake variables in addition to project specific ones in lit.
Differential Revision: https://reviews.llvm.org/D57670
llvm-svn: 353084
2019-02-05 04:02:26 +08:00
|
|
|
endif()
|
|
|
|
if(LIBUNWIND_SYSROOT)
|
2021-07-16 01:02:43 +08:00
|
|
|
add_target_flags_if_supported("--sysroot=${LIBUNWIND_SYSROOT}")
|
[CMake] Support CMake variables for setting target, sysroot and toolchain
CMake has a standard way of setting target triple, sysroot and external
toolchain through CMAKE_<LANG>_COMPILER_TARGET, CMAKE_SYSROOT and
CMAKE_<LANG>_COMPILER_EXTERNAL_TOOLCHAIN. These are turned into
corresponding --target=, --sysroot= and --gcc-toolchain= variables add
included appended to CMAKE_<LANG>_FLAGS.
libunwind, libc++abi, libc++ provides their own mechanism through
<PROJECT>_TARGET_TRIPLE, <PROJECT>_SYSROOT and <PROJECT>_GCC_TOOLCHAIN
variables. These are also passed to lit via lit.site.cfg, and lit config
uses these to set the corresponding compiler flags when building tessts.
This means that there are two different ways of setting target, sysroot
and toolchain, but only one is properly supported in lit. This change
extends CMake build for libunwind, libc++abi and libc++ to also support
the CMake variables in addition to project specific ones in lit.
Differential Revision: https://reviews.llvm.org/D57670
llvm-svn: 353084
2019-02-05 04:02:26 +08:00
|
|
|
endif()
|
2021-09-11 03:14:48 +08:00
|
|
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE ${CMAKE_TRY_COMPILE_TARGET_TYPE_ORIG})
|
2016-06-02 09:02:10 +08:00
|
|
|
|
|
|
|
# Configure compiler.
|
|
|
|
include(config-ix)
|
|
|
|
|
2018-09-05 04:57:50 +08:00
|
|
|
if (LIBUNWIND_USE_COMPILER_RT AND NOT LIBUNWIND_HAS_NODEFAULTLIBS_FLAG)
|
2017-04-12 10:28:07 +08:00
|
|
|
list(APPEND LIBUNWIND_LINK_FLAGS "-rtlib=compiler-rt")
|
|
|
|
endif()
|
|
|
|
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags_if_supported(-Werror=return-type)
|
2015-04-25 09:46:35 +08:00
|
|
|
|
[libunwind] Support stack unwind in CET environment
Control-flow Enforcement Technology (CET), published by Intel,
introduces shadow stack feature aiming to ensure a return from
a function is directed to where the function was called.
In a CET enabled system, each function call will push return
address into normal stack and shadow stack, when the function
returns, the address stored in shadow stack will be popped and
compared with the return address, program will fail if the 2
addresses don't match.
In exception handling, the control flow may skip some stack frames
and we must adjust shadow stack to avoid violating CET restriction.
In order to achieve this, we count the number of stack frames skipped
and adjust shadow stack by this number before jumping to landing pad.
Reviewed By: hjl.tools, compnerd, MaskRay
Differential Revision: https://reviews.llvm.org/D105968
Signed-off-by: gejin <ge.jin@intel.com>
2021-08-26 16:20:38 +08:00
|
|
|
if (LIBUNWIND_ENABLE_CET)
|
|
|
|
add_compile_flags_if_supported(-fcf-protection=full)
|
|
|
|
add_compile_flags_if_supported(-mshstk)
|
|
|
|
if (NOT LIBUNWIND_SUPPORTS_FCF_PROTECTION_EQ_FULL_FLAG)
|
|
|
|
message(SEND_ERROR "Compiler doesn't support CET -fcf-protection option!")
|
|
|
|
endif()
|
|
|
|
if (NOT LIBUNWIND_SUPPORTS_MSHSTK_FLAG)
|
|
|
|
message(SEND_ERROR "Compiler doesn't support CET -mshstk option!")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2015-04-25 09:46:35 +08:00
|
|
|
# Get warning flags
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags_if_supported(-W)
|
|
|
|
add_compile_flags_if_supported(-Wall)
|
|
|
|
add_compile_flags_if_supported(-Wchar-subscripts)
|
|
|
|
add_compile_flags_if_supported(-Wconversion)
|
|
|
|
add_compile_flags_if_supported(-Wmismatched-tags)
|
|
|
|
add_compile_flags_if_supported(-Wmissing-braces)
|
|
|
|
add_compile_flags_if_supported(-Wnewline-eof)
|
|
|
|
add_compile_flags_if_supported(-Wno-unused-function)
|
|
|
|
add_compile_flags_if_supported(-Wshadow)
|
|
|
|
add_compile_flags_if_supported(-Wshorten-64-to-32)
|
|
|
|
add_compile_flags_if_supported(-Wsign-compare)
|
|
|
|
add_compile_flags_if_supported(-Wsign-conversion)
|
|
|
|
add_compile_flags_if_supported(-Wstrict-aliasing=2)
|
|
|
|
add_compile_flags_if_supported(-Wstrict-overflow=4)
|
|
|
|
add_compile_flags_if_supported(-Wunused-parameter)
|
|
|
|
add_compile_flags_if_supported(-Wunused-variable)
|
|
|
|
add_compile_flags_if_supported(-Wwrite-strings)
|
|
|
|
add_compile_flags_if_supported(-Wundef)
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2020-08-01 01:44:02 +08:00
|
|
|
add_compile_flags_if_supported(-Wno-suggest-override)
|
|
|
|
|
2020-10-24 03:51:21 +08:00
|
|
|
if (WIN32)
|
|
|
|
# The headers lack matching dllexport attributes (_LIBUNWIND_EXPORT);
|
|
|
|
# silence the warning instead of cluttering the headers (which aren't
|
|
|
|
# necessarily the ones that the callers will use anyway) with the
|
|
|
|
# attributes.
|
|
|
|
add_compile_flags_if_supported(-Wno-dll-attribute-on-redeclaration)
|
|
|
|
endif()
|
|
|
|
|
2015-04-25 09:46:35 +08:00
|
|
|
if (LIBUNWIND_ENABLE_WERROR)
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags_if_supported(-Werror)
|
|
|
|
add_compile_flags_if_supported(-WX)
|
2015-04-25 09:46:35 +08:00
|
|
|
else()
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags_if_supported(-Wno-error)
|
|
|
|
add_compile_flags_if_supported(-WX-)
|
2015-04-25 09:46:35 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if (LIBUNWIND_ENABLE_PEDANTIC)
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags_if_supported(-pedantic)
|
2015-04-25 09:46:35 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Get feature flags.
|
|
|
|
# Exceptions
|
|
|
|
# Catches C++ exceptions only and tells the compiler to assume that extern C
|
|
|
|
# functions never throw a C++ exception.
|
2019-10-12 06:22:29 +08:00
|
|
|
add_cxx_compile_flags_if_supported(-fstrict-aliasing)
|
|
|
|
add_cxx_compile_flags_if_supported(-EHsc)
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2019-12-06 22:26:35 +08:00
|
|
|
# Don't run the linker in this CMake check.
|
|
|
|
#
|
|
|
|
# The reason why this was added is that when building libunwind for
|
|
|
|
# ARM Linux, we need to pass the -funwind-tables flag in order for it to
|
|
|
|
# work properly with ARM EHABI.
|
|
|
|
#
|
|
|
|
# However, when performing CMake checks, adding this flag causes the check
|
|
|
|
# to produce a false negative, because the compiler generates calls
|
|
|
|
# to __aeabi_unwind_cpp_pr0, which is defined in libunwind itself,
|
|
|
|
# which isn't built yet, so the linker complains about undefined symbols.
|
|
|
|
#
|
|
|
|
# This leads to libunwind not being built with this flag, which makes
|
|
|
|
# libunwind quite useless in this setup.
|
|
|
|
set(_previous_CMAKE_TRY_COMPILE_TARGET_TYPE ${CMAKE_TRY_COMPILE_TARGET_TYPE})
|
|
|
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
|
2019-10-12 09:50:57 +08:00
|
|
|
add_compile_flags_if_supported(-funwind-tables)
|
2019-12-06 22:26:35 +08:00
|
|
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE ${_previous_CMAKE_TRY_COMPILE_TARGET_TYPE})
|
|
|
|
|
|
|
|
if (LIBUNWIND_USES_ARM_EHABI AND NOT LIBUNWIND_SUPPORTS_FUNWIND_TABLES_FLAG)
|
|
|
|
message(SEND_ERROR "The -funwind-tables flag must be supported "
|
|
|
|
"because this target uses ARM Exception Handling ABI")
|
|
|
|
endif()
|
|
|
|
|
2019-10-12 06:22:29 +08:00
|
|
|
add_cxx_compile_flags_if_supported(-fno-exceptions)
|
|
|
|
add_cxx_compile_flags_if_supported(-fno-rtti)
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2019-01-30 06:26:18 +08:00
|
|
|
# Ensure that we don't depend on C++ standard library.
|
2019-10-12 09:50:57 +08:00
|
|
|
if (LIBUNWIND_HAS_NOSTDINCXX_FLAG)
|
2019-10-12 06:22:29 +08:00
|
|
|
list(APPEND LIBUNWIND_COMPILE_FLAGS -nostdinc++)
|
|
|
|
# Remove -stdlib flags to prevent them from causing an unused flag warning.
|
2020-10-13 22:05:00 +08:00
|
|
|
string(REPLACE "--stdlib=libc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
|
|
|
string(REPLACE "--stdlib=libstdc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
2019-10-12 06:22:29 +08:00
|
|
|
string(REPLACE "-stdlib=libc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
|
|
|
string(REPLACE "-stdlib=libstdc++" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
|
|
|
endif()
|
2019-01-30 06:26:18 +08:00
|
|
|
|
2015-04-25 09:46:35 +08:00
|
|
|
# Assert
|
|
|
|
string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
|
|
|
|
if (LIBUNWIND_ENABLE_ASSERTIONS)
|
|
|
|
# MSVC doesn't like _DEBUG on release builds. See PR 4379.
|
|
|
|
if (NOT MSVC)
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags(-D_DEBUG)
|
2016-08-09 01:56:28 +08:00
|
|
|
endif()
|
2015-04-25 09:46:35 +08:00
|
|
|
|
|
|
|
# On Release builds cmake automatically defines NDEBUG, so we
|
|
|
|
# explicitly undefine it:
|
|
|
|
if (uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE")
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags(-UNDEBUG)
|
2016-08-09 01:56:28 +08:00
|
|
|
endif()
|
2015-04-25 09:46:35 +08:00
|
|
|
else()
|
|
|
|
if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE")
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags(-DNDEBUG)
|
2016-08-09 01:56:28 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2016-05-25 20:36:34 +08:00
|
|
|
# Cross-unwinding
|
|
|
|
if (NOT LIBUNWIND_ENABLE_CROSS_UNWINDING)
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags(-D_LIBUNWIND_IS_NATIVE_ONLY)
|
2016-08-09 01:56:28 +08:00
|
|
|
endif()
|
2016-05-25 20:36:34 +08:00
|
|
|
|
2016-09-28 18:57:15 +08:00
|
|
|
# Threading-support
|
|
|
|
if (NOT LIBUNWIND_ENABLE_THREADS)
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags(-D_LIBUNWIND_HAS_NO_THREADS)
|
2016-09-28 18:57:15 +08:00
|
|
|
endif()
|
|
|
|
|
2016-07-07 18:55:39 +08:00
|
|
|
# ARM WMMX register support
|
|
|
|
if (LIBUNWIND_ENABLE_ARM_WMMX)
|
|
|
|
# __ARM_WMMX is a compiler pre-define (as per the ACLE 2.0). Clang does not
|
|
|
|
# define this macro for any supported target at present. Therefore, here we
|
|
|
|
# provide the option to explicitly enable support for WMMX registers in the
|
|
|
|
# unwinder.
|
2019-10-12 06:22:29 +08:00
|
|
|
add_compile_flags(-D__ARM_WMMX)
|
2016-08-09 01:56:28 +08:00
|
|
|
endif()
|
2016-07-07 18:55:39 +08:00
|
|
|
|
2020-07-29 18:39:41 +08:00
|
|
|
if(LIBUNWIND_IS_BAREMETAL)
|
|
|
|
add_compile_definitions(_LIBUNWIND_IS_BAREMETAL)
|
|
|
|
endif()
|
|
|
|
|
2020-08-19 03:05:07 +08:00
|
|
|
if(LIBUNWIND_USE_FRAME_HEADER_CACHE)
|
|
|
|
add_compile_definitions(_LIBUNWIND_USE_FRAME_HEADER_CACHE)
|
|
|
|
endif()
|
|
|
|
|
2020-11-11 17:58:41 +08:00
|
|
|
if(LIBUNWIND_REMEMBER_HEAP_ALLOC)
|
|
|
|
add_compile_definitions(_LIBUNWIND_REMEMBER_HEAP_ALLOC)
|
|
|
|
endif()
|
|
|
|
|
2015-04-25 09:46:35 +08:00
|
|
|
# This is the _ONLY_ place where add_definitions is called.
|
|
|
|
if (MSVC)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
2016-08-09 01:56:28 +08:00
|
|
|
endif()
|
2015-04-25 09:46:35 +08:00
|
|
|
|
2017-11-29 16:21:12 +08:00
|
|
|
# Disable DLL annotations on Windows for static builds.
|
|
|
|
if (WIN32 AND LIBUNWIND_ENABLE_STATIC AND NOT LIBUNWIND_ENABLE_SHARED)
|
[libunwind] unw_* alias fixes for ELF and Mach-O
Rename the CMake option, LIBUNWIND_HERMETIC_STATIC_LIBRARY, to
LIBUNWIND_HIDE_SYMBOLS. Rename the C macro define,
_LIBUNWIND_DISABLE_VISIBILITY_ANNOTATIONS, to _LIBUNWIND_HIDE_SYMBOLS,
because now the macro adds a .hidden directive rather than merely
suppress visibility annotations.
For ELF, when LIBUNWIND_HIDE_SYMBOLS is enabled, mark unw_getcontext as
hidden. This symbol is the only one defined using src/assembly.h's
WEAK_ALIAS macro. Other unw_* weak aliases are defined in C++ and are
already hidden.
Mach-O doesn't support weak aliases, so remove .weak_reference and
weak_import. When LIBUNWIND_HIDE_SYMBOLS is enabled, output
.private_extern for the unw_* aliases.
In assembly.h, add missing SYMBOL_NAME macro invocations, which are
used to prefix symbol names with '_' on some targets.
Fixes PR46709.
Reviewed By: #libunwind, phosek, compnerd, steven_wu
Differential Revision: https://reviews.llvm.org/D93003
2021-02-23 08:35:38 +08:00
|
|
|
add_definitions(-D_LIBUNWIND_HIDE_SYMBOLS)
|
2017-11-29 16:21:12 +08:00
|
|
|
endif()
|
|
|
|
|
2019-05-30 12:40:21 +08:00
|
|
|
if (LIBUNWIND_HAS_COMMENT_LIB_PRAGMA)
|
2019-11-30 22:13:56 +08:00
|
|
|
if (LIBUNWIND_HAS_DL_LIB)
|
|
|
|
add_definitions(-D_LIBUNWIND_LINK_DL_LIB)
|
|
|
|
endif()
|
|
|
|
if (LIBUNWIND_HAS_PTHREAD_LIB)
|
|
|
|
add_definitions(-D_LIBUNWIND_LINK_PTHREAD_LIB)
|
|
|
|
endif()
|
2019-05-30 12:40:21 +08:00
|
|
|
endif()
|
|
|
|
|
2015-04-25 09:46:35 +08:00
|
|
|
#===============================================================================
|
|
|
|
# Setup Source Code
|
|
|
|
#===============================================================================
|
|
|
|
|
|
|
|
include_directories(include)
|
|
|
|
|
|
|
|
add_subdirectory(src)
|
2017-03-28 23:21:43 +08:00
|
|
|
|
|
|
|
if (LIBUNWIND_INCLUDE_DOCS)
|
|
|
|
add_subdirectory(docs)
|
|
|
|
endif()
|
2017-07-06 23:20:12 +08:00
|
|
|
|
2021-09-17 00:27:53 +08:00
|
|
|
if (LIBUNWIND_INCLUDE_TESTS AND EXISTS ${LLVM_CMAKE_DIR})
|
2018-08-03 13:51:31 +08:00
|
|
|
add_subdirectory(test)
|
|
|
|
endif()
|