diff --git a/getting_started/unix-variants.html b/getting_started/unix-variants.html index dd90f12..96144a7 100644 --- a/getting_started/unix-variants.html +++ b/getting_started/unix-variants.html @@ -61,14 +61,14 @@
The most reliable way to get a copy of Boost is to download a -distribution from SourceForge:
+distribution from SourceForge:Download boost_1_79_0.tar.bz2.
+Download boost_1_80_0.tar.bz2.
In the directory where you want to put the Boost installation, execute
-tar --bzip2 -xf /path/to/boost_1_79_0.tar.bz2 +tar --bzip2 -xf /path/to/boost_1_80_0.tar.bz2
This is a sketch of the resulting directory structure:
-boost_1_79_0/ .................The “boost root directory” +boost_1_80_0/ .................The “boost root directory” index.htm .........A copy of www.boost.org starts here boost/ .........................All Boost Header files `` `` @@ -136,7 +136,7 @@ anything you can use in these directories.It's important to note the following:
-
@@ -636,10 +636,10 @@ e.g. C:\Program Files\boosThe path to the boost root directory (often /usr/local/boost_1_79_0) is +
- @@ -244,7 +244,7 @@ int main()
The path to the boost root directory (often /usr/local/boost_1_80_0) is sometimes referred to as $BOOST_ROOT in documentation and mailing lists .
Now, in the directory where you saved example.cpp, issue the following command:
-c++ -I path/to/boost_1_79_0 example.cpp -o example +c++ -I path/to/boost_1_80_0 example.cpp -o exampleTo test the result, type:
@@ -275,7 +275,7 @@ you'll need to acquire library binaries.Issue the following commands in the shell (don't type $; that represents the shell's prompt):
-$ cd path/to/boost_1_79_0 +$ cd path/to/boost_1_80_0 $ ./bootstrap.sh --helpSelect your configuration options and invoke ./bootstrap.sh again @@ -424,7 +424,7 @@ b2 --build-dir=b please see the Boost.Build documentation.
For example, your session might look like this:
-$ cd ~/boost_1_79_0 +$ cd ~/boost_1_80_0 $ b2 --build-dir=/tmp/build-boost toolset=gcc stageThat will build static and shared non-debug multi-threaded variants of the libraries. To build all variants, pass the additional option, “--build-type=complete”.
@@ -540,14 +540,14 @@ project.
You can specify the full path to each library:
-$ c++ -I path/to/boost_1_79_0 example.cpp -o example \ +$ c++ -I path/to/boost_1_80_0 example.cpp -o example \ ~/boost/stage/lib/libboost_regex-gcc34-mt-d-1_36.aYou can separately specify a directory to search (with -Ldirectory) and a library name to search for (with -llibrary,2 dropping the filename's leading lib and trailing suffix (.a in this case):
-$ c++ -I path/to/boost_1_79_0 example.cpp -o example \ +$ c++ -I path/to/boost_1_80_0 example.cpp -o example \ -L~/boost/stage/lib/ -lboost_regex-gcc34-mt-d-1_36As you can see, this method is just as terse as method A for one diff --git a/getting_started/windows.html b/getting_started/windows.html index a9c5178..3e2ae8f 100644 --- a/getting_started/windows.html +++ b/getting_started/windows.html @@ -61,7 +61,7 @@ not supported—they may or may not work.
1 Get Boost
The most reliable way to get a copy of Boost is to -download boost_1_79_0.7z or boost_1_79_0.zip and unpack it to install a complete Boost +download boost_1_80_0.7z or boost_1_80_0.zip and unpack it to install a complete Boost distribution.1
@@ -71,7 +71,7 @@ distribution.12 The Boost Distribution
This is a sketch of the resulting directory structure:
-boost_1_79_0\ .................The “boost root directory” +boost_1_80_0\ .................The “boost root directory” index.htm .........A copy of www.boost.org starts here boost\ .........................All Boost Header files lib\ .....................precompiled library binaries @@ -116,7 +116,7 @@ anything you can use in these directories.It's important to note the following:
-
The path to the boost root directory (often C:\Program Files\boost\boost_1_79_0) is +
- @@ -254,7 +254,7 @@ cd path\to\some\directory
The path to the boost root directory (often C:\Program Files\boost\boost_1_80_0) is sometimes referred to as $BOOST_ROOT in documentation and mailing lists .
followed by Return. For example,
-cd C:\Program Files\boost\boost_1_79_0 +cd C:\Program Files\boost\boost_1_80_0Long commands can be continued across several lines by typing a caret (^) at the end of all but the last line. Some examples @@ -279,7 +279,7 @@ select Properties from the resulting pop-up menu
In Configuration Properties > C/C++ > General > Additional Include Directories, enter the path to the Boost root directory, for example
-C:\Program Files\boost\boost_1_79_0
+C:\Program Files\boost\boost_1_80_0
In Configuration Properties > C/C++ > Precompiled Headers, change @@ -317,7 +317,7 @@ Visual Studio compiler. In that window, set the to a suitable location for creating some temporary files and type the following command followed by the Return key:
-cl /EHsc /I path\to\boost_1_79_0 path\to\example.cpp +cl /EHsc /I path\to\boost_1_80_0 path\to\example.cppTo test the result, type:
@@ -486,8 +486,8 @@ b2 --build-dir=b please see the Boost.Build documentation.For example, your session might look like this:3
-C:\WINDOWS> cd C:\Program Files\boost\boost_1_79_0 -C:\Program Files\boost\boost_1_79_0> b2 ^ +C:\WINDOWS> cd C:\Program Files\boost\boost_1_80_0 +C:\Program Files\boost\boost_1_80_0> b2 ^ More? --build-dir="C:\Documents and Settings\dave\build-boost" ^ More? --build-type=complete msvc stage@@ -626,7 +626,7 @@ earlier: select Properties from the resulting pop-up menu- In Configuration Properties > Linker > Additional Library Directories, enter the path to the Boost binaries, -e.g. C:\Program Files\boost\boost_1_79_0\lib\.
+e.g. C:\Program Files\boost\boost_1_80_0\lib\.- From the Build menu, select Build Solution.
For example, we can compile and link the above program from the Visual C++ command-line by simply adding the bold text below to the command line we used earlier, assuming your Boost binaries are -in C:\Program Files\boost\boost_1_79_0\lib:
+in C:\Program Files\boost\boost_1_80_0\lib:-cl /EHsc /I path\to\boost_1_79_0 example.cpp ^ - /link /LIBPATH:C:\Program Files\boost\boost_1_79_0\lib +cl /EHsc /I path\to\boost_1_80_0 example.cpp ^ + /link /LIBPATH:C:\Program Files\boost\boost_1_80_0\lib@@ -864,7 +864,7 @@ mailing list.[1] We recommend -downloading boost_1_79_0.7z and using 7-Zip to decompress +downloading boost_1_80_0.7z and using 7-Zip to decompress it. We no longer recommend .zip files for Boost because they are twice as large as the equivalent .7z files. We don't recommend using Windows' built-in decompression as it can be painfully slow for large archives.