File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
.github/actions/build-test/windows Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
2224popd
You can’t perform that action at this time.
0 commit comments