1
Fork 0
test-zig-cc/README.md

58 lines
1.9 KiB
Markdown
Raw Normal View History

2022-10-19 11:35:55 +03:00
bazel-zig-cc and llvm
---------------------
bazel-zig-cc has a performance issue when compiling many files. This repository
reproduces that.
2022-11-21 06:56:12 +02:00
The test
--------
Compiles 64 small binaries with [bazel-zig-cc][1] and [llvm14][2]. The tests
were run on an x86_64 8-core machine running Ubuntu 22.04.
2022-10-19 11:35:55 +03:00
Steps to reproduce
------------------
2022-11-21 06:56:12 +02:00
Baseline is llvm14: 12-13 seconds:
2022-10-19 11:35:55 +03:00
```
2022-11-29 16:17:00 +02:00
bazel --batch clean; bazel --batch build --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux ...
2022-11-21 06:25:58 +02:00
INFO: Elapsed time: 12.454s, Critical Path: 1.11s
2022-10-19 11:35:55 +03:00
```
2022-11-21 06:56:12 +02:00
zig cc without the sandbox. Which means different invocations of `zig cc` will
see that all files in `zig_lib_dir` are the same file. 17 seconds:
2022-10-19 11:35:55 +03:00
```
2022-11-29 16:17:00 +02:00
bazel --batch clean; bazel --batch build --spawn_strategy=local --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ...
2022-11-21 06:56:12 +02:00
INFO: Elapsed time: 17.021s, Critical Path: 1.67s
2022-11-21 06:37:34 +02:00
```
2022-11-21 06:56:12 +02:00
zig cc with `--sandbox_base=/dev/shm`: all sandbox files, including the
zig_sdk, are put to `/dev/shm`. However, they are all symlinks, which means zig
will re-hash all it's dependencies. 42 seconds:
2022-11-21 06:37:34 +02:00
```
2022-11-29 16:17:00 +02:00
bazel --batch clean; bazel --batch build --sandbox_base=/dev/shm --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ...
2022-11-21 06:37:34 +02:00
INFO: Elapsed time: 42.251s, Critical Path: 5.26s
```
2022-11-21 06:56:12 +02:00
zig cc plain: 142 seconds. Sandbox is on a real disk, which means it will take
even longer to re-hash all its dependencies:
2022-11-21 06:37:34 +02:00
```
2022-11-29 16:17:00 +02:00
bazel --batch clean; bazel --batch build --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ...
2022-11-21 06:56:12 +02:00
INFO: Elapsed time: 142.264s, Critical Path: 20.65s
```
2022-11-21 06:56:12 +02:00
Similar to `--config=hermetic-sandbox`. Which means there is something else at
play, not only re-hashing the sandbox files:
```
2022-12-11 08:00:03 +02:00
bazel --batch clean; bazel --batch build --config=hermetic-sandbox --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ...
INFO: Elapsed time: 136.957s, Critical Path: 18.14s
```
2022-11-21 06:56:12 +02:00
[1]: https://sr.ht/~motiejus/bazel-zig-cc
[2]: https://github.com/grailbio/bazel-toolchain