Why would you want a hermetic C++ toolchain?
Bazel is usually thought of as a hermetic build system. But the default behaviour you get with Bazel's C/C++ built-in rules is not hermetic! Why does this matter? The short answer: Reproducibility and portability.
Developers want their code to compil...
blog.aspect.build4 min read
Junhyeok Ahn
Hello, Thanks for the in-depth description of the hermetic cc toolchain.
I just have a quick question regarding the content. For the hermetic build of c or c++, should every dependent library be statically linked?