From 6eb40e20f7ea13ce16d24226bc5b3aec9be83aaf Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Mon, 7 Aug 2023 21:13:05 -0400 Subject: [PATCH] [SCons] Update required Boost version to 1.70 --- SConstruct | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/SConstruct b/SConstruct index 355506127..db9602525 100644 --- a/SConstruct +++ b/SConstruct @@ -1373,9 +1373,10 @@ if not env['BOOST_LIB_VERSION']: " 'boost_inc_dir' to point to the boost headers.") else: logger.info(f"Found Boost version {env['BOOST_LIB_VERSION']}") -if parse_version(env['BOOST_LIB_VERSION']) < parse_version("1.61"): - # dll support is available in Boost 1.61 or newer - config_error("Cantera requires Boost version 1.61 or newer.") +if parse_version(env['BOOST_LIB_VERSION']) < parse_version("1.70"): + # Boost.DLL with std::filesystem (making it header-only) is available in Boost 1.70 + # or newer + config_error("Cantera requires Boost version 1.70 or newer.") # check BLAS/LAPACK installations if env["system_blas_lapack"] == "n":