Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
AWS_SDK_CPP_MINOR: 11
AWS_SDK_CPP_PATCH: 570
BOOST_MAJOR: 1
BOOST_MINOR: 84
BOOST_MINOR: 88
BOOST_PATCH: 0

jobs:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if(WITH_ASAN)
target_link_options(binlog_server_compiler_flags INTERFACE "-fsanitize=address")
endif()

find_package(Boost 1.84.0 EXACT REQUIRED COMPONENTS url)
find_package(Boost 1.88.0 EXACT REQUIRED COMPONENTS url)

find_package(MySQL REQUIRED)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Currently prebuilt binaries are not available.

- [CMake](https://cmake.org/) 3.20.0+
- [Clang](https://clang.llvm.org/) (`clang-15` / `clang-16` / `clang-17`) or [GCC](https://gcc.gnu.org/) (`gcc-12` / `gcc-13` / `gcc-14`)
- [Boost libraries](https://www.boost.org/) 1.84.0 (git version, not the source tarball)
- [Boost libraries](https://www.boost.org/) 1.88.0 (git version, not the source tarball)
- [MySQL client library](https://dev.mysql.com/doc/c-api/8.0/en/) 8.0.x (`libmysqlclient`)
- [CURL library](https://curl.se/libcurl/) (`libcurl`) 8.6.0+
- [AWS SDK for C++](https://aws.amazon.com/sdk-for-cpp/) 1.11.570
Expand Down Expand Up @@ -56,7 +56,7 @@ export BUILD_PRESET=release_gcc13
###### Getting Boost Libraries source

```bash
git clone --recurse-submodules -b boost-1.84.0 --jobs=8 https://github.com/boostorg/boost.git
git clone --recurse-submodules -b boost-1.88.0 --jobs=8 https://github.com/boostorg/boost.git
cd boost
git switch -c required_release
```
Expand Down