Super-project for modularized Boost
Find a file
boost-commitbot c80731cf92
Some checks failed
CI / b2-posix (macos-13) (push) Waiting to run
CI / b2-posix (macos-14) (push) Waiting to run
CI / b2-posix (macos-15) (push) Waiting to run
CI / b2-posix (ubuntu-20.04) (push) Waiting to run
CI / b2-posix (ubuntu-22.04) (push) Waiting to run
CI / b2-posix (ubuntu-22.04-arm) (push) Waiting to run
CI / b2-posix (ubuntu-24.04) (push) Waiting to run
CI / b2-posix (ubuntu-24.04-arm) (push) Waiting to run
CI / b2-windows (windows-2019) (push) Waiting to run
CI / b2-windows (windows-2022) (push) Waiting to run
CI / b2-windows (windows-2025) (push) Waiting to run
CI / cmake-install-posix (macos-13) (push) Waiting to run
CI / cmake-install-posix (macos-14) (push) Waiting to run
CI / cmake-install-posix (macos-15) (push) Waiting to run
CI / cmake-install-posix (ubuntu-20.04) (push) Waiting to run
CI / cmake-install-posix (ubuntu-22.04) (push) Waiting to run
CI / cmake-install-posix (ubuntu-22.04-arm) (push) Waiting to run
CI / cmake-install-posix (ubuntu-24.04) (push) Waiting to run
CI / cmake-install-posix (ubuntu-24.04-arm) (push) Waiting to run
CI / cmake-install-windows (windows-2019) (push) Waiting to run
CI / cmake-install-windows (windows-2022) (push) Waiting to run
CI / cmake-install-windows (windows-2025) (push) Waiting to run
CI / cmake-test-posix-quick (macos-13) (push) Waiting to run
CI / cmake-test-posix-quick (macos-14) (push) Waiting to run
CI / cmake-test-posix-quick (macos-15) (push) Waiting to run
CI / cmake-test-posix-quick (ubuntu-20.04) (push) Waiting to run
CI / cmake-test-posix-quick (ubuntu-22.04) (push) Waiting to run
CI / cmake-test-posix-quick (ubuntu-22.04-arm) (push) Waiting to run
CI / cmake-test-posix-quick (ubuntu-24.04) (push) Waiting to run
CI / cmake-test-posix-quick (ubuntu-24.04-arm) (push) Waiting to run
CI / cmake-test-windows-quick (windows-2019) (push) Waiting to run
CI / cmake-test-windows-quick (windows-2022) (push) Waiting to run
CI / cmake-test-windows-quick (windows-2025) (push) Waiting to run
CI / cmake-test-posix (ubuntu-latest) (push) Failing after 26s
Update array from develop
2025-04-03 11:32:50 +00:00
.circleci CircleCI: update image (#992) 2025-01-20 18:24:15 +02:00
.github/workflows Update ci.yml (#1008) 2025-02-01 21:35:56 +02:00
doc Updated links to BoostBook documentation. (#938) 2024-08-28 08:26:53 -04:00
libs Update array from develop 2025-04-03 11:32:50 +00:00
more@b3477f54d8 Update more from develop 2024-12-12 15:37:23 +00:00
status Remove duplicated words in 'explicit-failures-markup.xml'. Thanks to zhoufanjin for the catch 2025-01-09 08:18:03 -08:00
tools Update boostlook from develop 2025-03-25 18:06:10 +00:00
.gitattributes 1.16.1 initial CVS checkin 2000-07-07 16:04:40 +00:00
.gitignore Ignore stage_x64 directory (#163) 2017-09-23 19:49:15 +01:00
.gitmodules Add submodule hash2 2025-02-17 19:10:59 +02:00
.travis.yml Update .travis.yml 2021-06-12 00:11:10 +03:00
appveyor.yml Lower number of Appveyor jobs 2017-10-30 15:29:29 +02:00
boost-build.jam Fix spelling errors. NFCI. Thanks to jsosef for the patch 2023-01-21 14:04:53 -08:00
boost.css Should set the colour whenever setting the background in css. 2009-06-01 19:34:49 +00:00
boost.png Merged from 1.33.0 release 2005-08-12 13:02:37 +00:00
boostcpp.jam guard tag against empty type (#908) 2024-05-26 22:17:46 +03:00
bootstrap.bat Add vc143 to toolsets recognised by bootstrap.bat 2021-10-14 12:38:50 +02:00
bootstrap.sh Clarify bootstrap.sh help description. 2021-01-26 07:05:53 -06:00
CMakeLists.txt Update version to 1.88 2024-12-12 07:12:54 -08:00
index.htm Use the doc/src stylesheets for some html files. 2010-06-20 18:02:51 +00:00
index.html Use the minor release version for 'new libraries' 2017-08-27 23:54:23 +01:00
INSTALL Initial commit 2008-03-26 21:26:55 +00:00
Jamroot Update version to 1.88 2024-12-12 07:12:54 -08:00
LICENSE_1_0.txt Reflect license file renaming to accomodate more operating systems. 2003-09-30 00:39:30 +00:00
README.md Add how-to clone the superproject to README.md 2020-04-17 19:13:33 +02:00
rst.css Use the doc/src stylesheets for some html files. 2010-06-20 18:02:51 +00:00

Boost C++ Libraries

The Boost project provides free peer-reviewed portable C++ source libraries.

We emphasize libraries that work well with the C++ Standard Library. Boost libraries are intended to be widely useful, and usable across a broad spectrum of applications. The Boost license encourages both commercial and non-commercial use and does not require attribution for binary use.

The project website is www.boost.org, where you can obtain more information and download the current release.

Cloning

Clone the superproject repository with all submodules and checkout the master as the default branch:

git clone --recurse-submodules https://github.com/boostorg/boost.git boost-root

or checkout the develop branch with the latest development snapshot:

git clone --branch develop --recurse-submodules https://github.com/boostorg/boost.git boost-root

Alternatively, clone just the superproject repository, then clone a desired submodule together with its dependencies:

git clone https://github.com/boostorg/boost.git boost-root
cd boost-root
git submodule update --init tools/boostdep
python tools/boostdep/depinst/depinst.py filesystem

Alternatively, clone just the superproject repository, then manually pick individual submodules:

git clone https://github.com/boostorg/boost.git boost-root
cd boost-root
git submodule --quiet update --init \
    tools/build \
    tools/boost_install \
    tools/boostdep \
    libs/headers