From aea45c3fc666b0ba1d224a3eaac04df5a54d369a Mon Sep 17 00:00:00 2001 From: Oleh Nikolaiev Date: Mon, 2 Dec 2024 12:59:17 +0000 Subject: [PATCH] skaled 2053 build boost context if needed --- deps/build.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/deps/build.sh b/deps/build.sh index 6d069e4..ae755f9 100755 --- a/deps/build.sh +++ b/deps/build.sh @@ -580,8 +580,13 @@ then if [[ "${WITH_EMSCRIPTEN}" -eq 1 ]]; then BOOST_LIBRARIES="program_options" - else + else BOOST_LIBRARIES="system,thread,filesystem,regex,atomic,program_options" + if [ "$SKALED_DEPS_CHAIN" = "1" ]; + then + BOOST_LIBRARIES="${BOOST_LIBRARIES},context" + fi + fi eval ./bootstrap.sh --prefix="$INSTALL_ROOT" --with-libraries="$BOOST_LIBRARIES"