From 09348a52fdd07e7793750b88d242a711cab66ec0 Mon Sep 17 00:00:00 2001 From: Sergey Kroshnin Date: Mon, 7 Sep 2020 12:26:13 +0300 Subject: [PATCH] Add Boost.Coroutine to bootstrap_boost.sh script (#2911) following https://github.com/nanocurrency/nano-node/pull/2788 --- util/build_prep/bootstrap_boost.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/build_prep/bootstrap_boost.sh b/util/build_prep/bootstrap_boost.sh index 1caddc25..af433fd6 100755 --- a/util/build_prep/bootstrap_boost.sh +++ b/util/build_prep/bootstrap_boost.sh @@ -33,7 +33,7 @@ while getopts 'hmscCkpvB:j:' OPT; do LINK_TYPE+=('link=shared') ;; m) - bootstrapArgs+=('--with-libraries=system,thread,log,filesystem,program_options') + bootstrapArgs+=('--with-libraries=system,thread,log,filesystem,program_options,coroutine') ;; j) buildThreads=${OPTARG}