From ece9e2fdd19d62d9e898aea1fd33289d03597823 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 6 Feb 2024 11:46:27 +0500 Subject: [PATCH] build-deps - bump boost version to avoid "missing .b2 issue" issue was mentioned in #2524 and resulted in error below trying to build boost dependency ``` '.\b2' is not recognized as an internal or external command, operable program or batch file. ``` --- win/build-deps.cmd | 2 +- win/run-cmake.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/win/build-deps.cmd b/win/build-deps.cmd index b8cc9e7d94..6e25634f89 100644 --- a/win/build-deps.cmd +++ b/win/build-deps.cmd @@ -114,7 +114,7 @@ if "%CMAKE_VERSION%" LSS "cmake version 3.11.4" ( ) :: NOTE Boost < 1.64 doesn't work without tricks if the user has only VS 2017 installed and no earlier versions. -set BOOST_VERSION=1.74.0 +set BOOST_VERSION=1.78.0 :: Version string with underscores instead of dots. set BOOST_VER=%BOOST_VERSION:.=_% diff --git a/win/run-cmake.bat b/win/run-cmake.bat index 714919ae49..c047bf4320 100755 --- a/win/run-cmake.bat +++ b/win/run-cmake.bat @@ -80,7 +80,7 @@ IF NOT EXIST ..\%BUILD_DIR%. mkdir ..\%BUILD_DIR% pushd ..\%BUILD_DIR% :: tfk: todo remove duplication -set BOOST_VERSION=1.74.0 +set BOOST_VERSION=1.78.0 set BOOST_VER=%BOOST_VERSION:.=_% set BOOST_ROOT=%DEPS_DIR%\boost_%BOOST_VER%