|
|
|
|
|
by gravypod
1748 days ago
|
|
Another few benefits with Bazel is that your build is mostly hermetic and reproducible. I've never had to run `bazel clean` and the output sha of your builds will always be the same (good for signing and security). You can also use remote build execution (RBE) to run your builds in parallel. This makes for a massive performance boost when you're compiling a lot of libraries (packages, source files, etc). It also models your source code in your build system (exposing libraries, binaries, etc). I'd love to see a performance comparison with `rules_rust`. |
|