fix: Fix backtrace usage (#1932)

This commit is contained in:
Sergey Kuznetsov
2025-02-27 14:26:51 +00:00
committed by GitHub
parent 918a92eeee
commit b909b8879d
2 changed files with 9 additions and 14 deletions

View File

@@ -38,21 +38,15 @@ target_sources(
newconfig/ValueView.cpp
)
target_link_libraries(
clio_util
PUBLIC Boost::headers
dl
fmt::fmt
openssl::openssl
xrpl::libxrpl
Threads::Threads
clio_options
)
if (!san)
target_link_libraries(clio_util PUBLIC Boost::stacktrace_backtrace libbacktrace::libbacktrace)
# This must be above the target_link_libraries call otherwise backtrace doesn't work
if ("${san}" STREQUAL "")
target_link_libraries(clio_util PUBLIC Boost::stacktrace_backtrace dl libbacktrace::libbacktrace)
endif ()
target_link_libraries(
clio_util PUBLIC Boost::headers fmt::fmt openssl::openssl xrpl::libxrpl Threads::Threads clio_options
)
# FIXME: needed on gcc-12, clang-16 and AppleClang for now (known boost 1.82 issue for some compilers)
#
# For some reason cmake doesn't propagate the compile definitions from clio_options so we need to add them here