Skip to content

Commit bd0c636

Browse files
authored
Document b2 parameters (#1332)
There was no clear description of what the `b2` parameters did. [Related discussion](#1322 (comment)).
1 parent db3b3d8 commit bd0c636

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/actions/build-test/windows/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ runs:
9191
rm ${{ inputs.BOOST_ARCHIVE_NAME }}
9292
cd ${{ inputs.BOOST_FOLDER_NAME }}
9393
.\bootstrap.bat
94+
# Build the libs for:
95+
# - Atomic - https://www.boost.org/libs/atomic/
96+
# - Thread - https://www.boost.org/libs/thread/
97+
# - Chrono - https://www.boost.org/libs/chrono/
9498
.\b2 address-model=${{ inputs.ARCH_ADDRESS_MODEL }} --with-atomic --with-thread --with-chrono install
9599
cd ..
96100
Remove-Item ${{ inputs.BOOST_FOLDER_NAME }} -Recurse -Force

scripts/install-boost.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,8 @@ TARBALL_NAME=boost_$(echo "$1" | tr . _)
1515
curl --fail --silent --show-error --location "https://archives.boost.io/release/${1}/source/${TARBALL_NAME}.tar.gz" | tar xzf -
1616
pushd "${TARBALL_NAME}"
1717
./bootstrap.sh
18+
# Build the libs for:
19+
# - Thread - https://www.boost.org/libs/thread/
20+
# - Atomic - https://www.boost.org/libs/atomic/
1821
./b2 --with-thread --with-chrono install
1922
popd

0 commit comments

Comments
 (0)