boost 1.70 requires log_setup component specifically updated CMAKE 1.67 and 1.69 dont require explicit but will use (#2185)

update boostrap_boost.sh to mirror https://docs.nano.org/integration-guides/build-options/
This commit is contained in:
Russel Waters 2019-07-30 15:59:50 -04:00 committed by GitHub
commit 1ab3bdb62c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -163,7 +163,7 @@ set(Boost_USE_MULTITHREADED ON)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules")
find_package (Boost 1.67.0 REQUIRED COMPONENTS filesystem log thread program_options system)
find_package (Boost 1.67.0 REQUIRED COMPONENTS filesystem log log_setup thread program_options system)
if (NANO_ROCKSDB)
find_package (RocksDB REQUIRED)
find_package (ZLIB REQUIRED)

View file

@ -26,7 +26,7 @@ while getopts 'hmcCkpvB:' OPT; do
exit 0
;;
m)
bootstrapArgs+=('--with-libraries=thread,log,filesystem,program_options')
bootstrapArgs+=('--with-libraries=system,thread,log,filesystem,program_options')
;;
c)
useClang='true'