From cfdb40c792e9edd645b457fc53cd5574683ebd6b Mon Sep 17 00:00:00 2001 From: John Jones Date: Fri, 15 Feb 2019 08:35:41 -0500 Subject: [PATCH 1/3] support for Boost 1.69 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a5c719aaa0..4c8e2ff406 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,8 @@ We recommend building on Ubuntu 16.04 LTS (64-bit) git submodule sync --recursive git submodule update --init --recursive -**NOTE:** BitShares requires a [Boost](http://www.boost.org/) version in the range [1.57 - 1.65.1]. Versions earlier than -1.57 or newer than 1.65.1 are NOT supported. If your system's Boost version is newer, then you will need to manually build +**NOTE:** BitShares requires a [Boost](http://www.boost.org/) version in the range [1.57 - 1.69]. Versions earlier than +1.57 or newer than 1.69 are NOT supported. If your system's Boost version is newer, then you will need to manually build an older version of Boost and specify it to CMake using `DBOOST_ROOT`. **NOTE:** BitShares requires a 64-bit operating system to build, and will not build on a 32-bit OS. From 25125b1b6ffff4ee720332e41829a9c12115b1e1 Mon Sep 17 00:00:00 2001 From: John Jones Date: Fri, 15 Feb 2019 12:50:54 -0500 Subject: [PATCH 2/3] change boost verbiage --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4c8e2ff406..4d79ab8a83 100644 --- a/README.md +++ b/README.md @@ -55,9 +55,10 @@ We recommend building on Ubuntu 16.04 LTS (64-bit) git submodule sync --recursive git submodule update --init --recursive -**NOTE:** BitShares requires a [Boost](http://www.boost.org/) version in the range [1.57 - 1.69]. Versions earlier than -1.57 or newer than 1.69 are NOT supported. If your system's Boost version is newer, then you will need to manually build -an older version of Boost and specify it to CMake using `DBOOST_ROOT`. +**NOTE:** Versions of [Boost](http://www.boost.org/) 1.57 through 1.69 are supported. Newer versions may work, but +have not been tested. If your system came pre-installed with a version of Boost that you do not wish to use, you may +manually build your preferred version and use it with BitShares by specifying it on the CMake command line (e.g. +``cmake -DBOOST_ROOT=/path/to/boost .``. **NOTE:** BitShares requires a 64-bit operating system to build, and will not build on a 32-bit OS. From f50a0efc8f19049931f15d94ec42cb610887fbb8 Mon Sep 17 00:00:00 2001 From: John Jones Date: Fri, 15 Feb 2019 12:52:56 -0500 Subject: [PATCH 3/3] fix formatting --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4d79ab8a83..a1e64b09dd 100644 --- a/README.md +++ b/README.md @@ -57,8 +57,9 @@ We recommend building on Ubuntu 16.04 LTS (64-bit) **NOTE:** Versions of [Boost](http://www.boost.org/) 1.57 through 1.69 are supported. Newer versions may work, but have not been tested. If your system came pre-installed with a version of Boost that you do not wish to use, you may -manually build your preferred version and use it with BitShares by specifying it on the CMake command line (e.g. -``cmake -DBOOST_ROOT=/path/to/boost .``. +manually build your preferred version and use it with BitShares by specifying it on the CMake command line. + +Example: ``cmake -DBOOST_ROOT=/path/to/boost .`` **NOTE:** BitShares requires a 64-bit operating system to build, and will not build on a 32-bit OS.