Skip to content

Commit bfc53ca

Browse files
authored
Revert back PR #1335 (#1344)
Revert back PR #1335. Add the boost lib dependencies explicitly. see [comment](#1335 (comment)) for details.
1 parent c8533ab commit bfc53ca

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ runs:
9393
.\bootstrap.bat
9494
# Build the libs for:
9595
# - Thread - https://www.boost.org/libs/thread/
96-
.\b2 address-model=${{ inputs.ARCH_ADDRESS_MODEL }} --with-thread install
96+
# - Chrono - https://www.boost.org/libs/chrono/
97+
# - Atomic - https://www.boost.org/libs/atomic/
98+
.\b2 address-model=${{ inputs.ARCH_ADDRESS_MODEL }} --with-thread --with-chrono --with-atomic install
9799
cd ..
98100
Remove-Item ${{ inputs.BOOST_FOLDER_NAME }} -Recurse -Force
99101

scripts/install-boost.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ pushd "${TARBALL_NAME}"
1717
./bootstrap.sh
1818
# Build the libs for:
1919
# - Thread - https://www.boost.org/libs/thread/
20+
# - Chrono - https://www.boost.org/libs/chrono/
21+
# - Atomic - https://www.boost.org/libs/atomic/
2022
# Used the c++11 language level intentionally to support old boost versions.
21-
./b2 cxxflags="-std=c++11 -Wno-enum-constexpr-conversion" --with-thread install
23+
./b2 cxxflags="-std=c++11 -Wno-enum-constexpr-conversion" --with-thread --with-chrono --with-atomic install
2224
popd

0 commit comments

Comments
 (0)