blob: 5d62942a77a530cb4115bb8126640471410dfc4d [file] [log] [blame] [view]
# Build faster
## TL;DR
For local developing workflow, build with `--config=fast`.
Example:
```shell
$ tools/bazel run --config=fast //common:kernel_aarch64 -- --destdir=out/dist
```
Or add to `user.bazelrc`:
```text
# user.bazelrc
build --config=fast
```
## How does this work?
This config implies:
- `--config=local`. See [sandbox.md](sandbox.md).