Skip to content

Commit

Permalink
skaled 2053 build boost context if needed
Browse files Browse the repository at this point in the history
  • Loading branch information
olehnikolaiev committed Dec 2, 2024
1 parent cb8c0d1 commit aea45c3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion deps/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit aea45c3

Please sign in to comment.