From 1e03de3faf8eb696b49b78b21d6073453710cabd Mon Sep 17 00:00:00 2001 From: Nikita Kniazev Date: Fri, 19 Oct 2018 04:20:27 +0300 Subject: [PATCH] Update the build guide with cxxstd fix #1271 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 025e1b33..d56ad696 100644 --- a/README.md +++ b/README.md @@ -117,12 +117,12 @@ libraries. Instructions for doing so may be found on the [Boost Wiki](https://github.com/boostorg/boost/wiki/Getting-Started). These commands will build the programs and documentation that come -with Beast (omit the cxxflags parameter when building using MSVC): +with Beast: ``` cd boost # The directory containing the Boost superproject and libraries -b2 libs/beast/test cxxflags="-std=c++11" # bjam must be in your $PATH -b2 libs/beast/example cxxflags="-std=c++11" +b2 libs/beast/test cxxstd=11 # bjam must be in your $PATH +b2 libs/beast/example cxxstd=11 b2 libs/beast/doc ```