mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-04 08:02:31 +00:00
30 lines
499 B
Markdown
30 lines
499 B
Markdown
|
# Simple Ninja Example
|
||
|
|
||
|
## Dependencies
|
||
|
|
||
|
- clang
|
||
|
- bazel
|
||
|
|
||
|
## Executing the Example
|
||
|
|
||
|
To execute the example, run
|
||
|
|
||
|
```bash
|
||
|
bazel test ...
|
||
|
```
|
||
|
|
||
|
## Troubleshooting
|
||
|
|
||
|
If you receive an error of the form:
|
||
|
|
||
|
```text
|
||
|
ccache: FATAL: Failed to create /home/$USER/.ccache/2/f: Read-only file system
|
||
|
```
|
||
|
|
||
|
This is likely because you're have ccache set as your compiler. You can either
|
||
|
disable ccache, or allow the sandbox to write to ~/.ccache:
|
||
|
|
||
|
```bash
|
||
|
bazel test --sandbox_writable_path ~/.ccache ...
|
||
|
```
|