Add a note for bazel clean.

#codehealth

PiperOrigin-RevId: 573636115
This commit is contained in:
Hiroyuki Komatsu
2023-10-15 17:31:10 +00:00
parent 4e8bb93478
commit 00f867b459

View File

@ -172,6 +172,21 @@ This command reverts the above change.
git update-index --no-assume-unchanged src/config.bzl
```
### Clean build cache
You may have some build errors when you update build environment or configurations.
In that case, cleaing the build cache possibly addresses the problem.
```
bazel clean
```
To clean the cache deeply, add the `--expunge` option.
```
bazel clean --expunge
```
## Build Mozc library for Android:
Client code for Android apk is deprecated.