Skip to content

Commit

Permalink
Merge pull request #15376 from ethereum/fix-boost-min-version
Browse files Browse the repository at this point in the history
Bump min Boost dependency to 1.67
  • Loading branch information
cameel committed Aug 30, 2024
2 parents 7ad125f + 2f46323 commit 40e005b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cmake/EthDependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ if (WIN32)
find_package(Boost 1.77.0 QUIET REQUIRED COMPONENTS ${BOOST_COMPONENTS})
else()
# Boost 1.65 is the first to also provide boost::get for rvalue-references (#5787).
find_package(Boost 1.65.0 QUIET REQUIRED COMPONENTS ${BOOST_COMPONENTS})
# Boost 1.67 moved container_hash into is own module.
find_package(Boost 1.67.0 QUIET REQUIRED COMPONENTS ${BOOST_COMPONENTS})
endif()

# If cmake is older than boost and boost is older than 1.70,
Expand Down
2 changes: 1 addition & 1 deletion docs/installing-solidity.rst
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ The following are dependencies for all builds of Solidity:
| Windows, 3.13+ otherwise) | |
+-----------------------------------+-------------------------------------------------------+
| `Boost`_ (version 1.77+ on | C++ libraries. |
| Windows, 1.65+ otherwise) | |
| Windows, 1.67+ otherwise) | |
+-----------------------------------+-------------------------------------------------------+
| `Git`_ | Command-line tool for retrieving source code. |
+-----------------------------------+-------------------------------------------------------+
Expand Down

0 comments on commit 40e005b

Please sign in to comment.