Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Downgrade to boost 1.85 #2244

Merged
merged 3 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions cmake/Hunter/config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ hunter_config(
CMAKE_ARGS WITH_GFLAGS=OFF
)

hunter_config(
Boost
VERSION 1.85.0
)

if ("${WASM_COMPILER}" STREQUAL "WasmEdge")
hunter_config(
fmt
Expand Down Expand Up @@ -107,8 +112,8 @@ hunter_config(

hunter_config(
libp2p
URL https://github.com/libp2p/cpp-libp2p/archive/a820e24a88170bdcd7e93c821b6b3bd6f5f01a9b.tar.gz
SHA1 3bce83beb222906b390e73956a47fb4820729bce
URL https://github.com/libp2p/cpp-libp2p/archive/c96d45f792fafd6970a7e37ec816b02a9167e2b6.zip
SHA1 884932112bc75996eeecd4a7bbcb932565fe9859
)

hunter_config(
Expand Down
2 changes: 1 addition & 1 deletion cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ endif ()

# https://docs.hunter.sh/en/latest/packages/pkg/Boost.html
hunter_add_package(Boost COMPONENTS random filesystem program_options date_time)
find_package(Boost CONFIG REQUIRED random filesystem program_options date_time process)
find_package(Boost CONFIG REQUIRED random filesystem program_options date_time)

hunter_add_package(qtils)
find_package(qtils CONFIG REQUIRED)
Expand Down
1 change: 0 additions & 1 deletion core/telemetry/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ target_link_libraries(telemetry
kagome_uri
Boost::boost
Boost::date_time
Boost::process
OpenSSL::SSL
RapidJSON::rapidjson
p2p::p2p_asio_scheduler_backend
Expand Down
Loading