2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-29 12:33:51 +00:00
rules_foreign_cc/examples/make_simple
UebelAndre 3b3960267c
Added tool_prefix attribute (#676)
* Added `build_data` attribute and deprecated `additional_inputs`, `additional_tools`, and `tool_deps`.

* Added `tool_prefix` and `configure_prefix` attributes

* Updated examples

* Fixed typo
2021-06-14 16:59:49 +00:00
..
code Add config for building with spawn_strategy=standalone (#603) 2021-05-05 17:47:25 -07:00
BUILD.bazel Added tool_prefix attribute (#676) 2021-06-14 16:59:49 +00:00
README.md Added ninja rule for building Ninja projects (#527) 2021-03-01 15:46:25 +00:00
test_libb.cpp Restructed examples and enabled more testing (#515) 2021-02-26 20:21:13 +00:00

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