2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-30 16:42:07 +00:00
rules_foreign_cc/examples/ninja_simple
UebelAndre edbfa3bfa9
Restructured rules to match architecture (#555)
* Restructured rules to match architecture

* Added exports of all symbols in the deprecated location for legacy support

* Updated examples
2021-03-12 16:54:14 +00:00
..
code Enable testing on RBE (#525) 2021-03-09 13:28:28 -08:00
BUILD.bazel Restructured rules to match architecture (#555) 2021-03-12 16:54:14 +00:00
README.md Added ninja rule for building Ninja projects (#527) 2021-03-01 15:46:25 +00:00
test_libb.cpp Added ninja rule for building Ninja projects (#527) 2021-03-01 15:46:25 +00:00

Simple Ninja Example

Dependencies

  • clang
  • bazel

Executing the Example

To execute the example, run

   bazel test ...

Troubleshooting

If you receive an error of the form:

  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:

  bazel test --sandbox_writable_path ~/.ccache ...