Skip to content

Commit

Permalink
build: Downgrade boost version error to warning (#3522)
Browse files Browse the repository at this point in the history
Error by default was a bit aggressive.
  • Loading branch information
paulgessinger authored Aug 20, 2024
1 parent 320ef1b commit d352878
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -279,14 +279,10 @@ if(ACTS_SETUP_BOOST)
endif()

if(Boost_VERSION VERSION_EQUAL "1.85.0")
set(message
message(
WARNING
"Boost 1.85.0 is known to be broken (https://github.com/boostorg/container/issues/273). Please use a different version."
)
if(ACTS_IGNORE_BOOST_1850_ERROR)
message(WARNING ${message})
else()
message(SEND_ERROR ${message})
endif()
endif()
endif()

Expand Down

0 comments on commit d352878

Please sign in to comment.