Skip to content

Commit

Permalink
cpp_stl/{clang3.4,gcc4.8}: reduce Boost build output
Browse files Browse the repository at this point in the history
`-d0` means "Suppress all informational messages", see
https://www.boost.org/doc/libs/1_81_0/tools/build/doc/html/index.html#bbv2.overview.invocation.options

Without this option, the build output is flooded with 15k `common.copy`
messages like the following:

```
common.copy /usr/local/include/boost/wave.hpp
common.copy /usr/local/include/boost/weak_ptr.hpp
common.copy /usr/local/include/boost/version.hpp
common.copy /usr/local/include/boost/visit_each.hpp
(...)
```

... which is not very useful.
  • Loading branch information
generalmimon committed Dec 30, 2024
1 parent 29e56a3 commit f1f1d11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cpp_stl/clang3.4-linux-x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ RUN curl -fsSLO https://archives.boost.io/release/1.81.0/source/boost_1_81_0.tar
rm -f boost_1_81_0.tar.bz2 && \
cd boost_1_81_0 && \
./bootstrap.sh --with-libraries=test && \
./b2 --with-test variant=debug link=shared install && \
./b2 -d0 --with-test variant=debug link=shared install && \
cd .. && \
rm -rf boost_1_81_0

Expand Down
2 changes: 1 addition & 1 deletion src/cpp_stl/gcc4.8-linux-x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ RUN curl -fsSLO https://archives.boost.io/release/1.81.0/source/boost_1_81_0.tar
rm -f boost_1_81_0.tar.bz2 && \
cd boost_1_81_0 && \
./bootstrap.sh --with-libraries=test && \
./b2 --with-test variant=debug link=shared install && \
./b2 -d0 --with-test variant=debug link=shared install && \
cd .. && \
rm -rf boost_1_81_0

Expand Down

0 comments on commit f1f1d11

Please sign in to comment.