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/make_simple
UebelAndre e285764b78
Restructed examples and enabled more testing (#515)
* Reorganized examples

* Documentation

* Third party
2021-02-26 20:21:13 +00:00
..
code Restructed examples and enabled more testing (#515) 2021-02-26 20:21:13 +00:00
BUILD Restructed examples and enabled more testing (#515) 2021-02-26 20:21:13 +00:00
README.md Restructed examples and enabled more testing (#515) 2021-02-26 20:21:13 +00:00
test_libb.cpp Restructed examples and enabled more testing (#515) 2021-02-26 20:21:13 +00:00

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 ...