rules_foreign_cc/examples/make_simple
Fabian Meumertzheim 26eadbcd0d
Replace `escape_locations` with `escape_locations_and_make_variables` everywhere (#861)
Co-authored-by: James Sharpe <james.sharpe@zenotech.com>
2022-02-09 22:34:12 +00:00
..
code Replace `escape_locations` with `escape_locations_and_make_variables` everywhere (#861) 2022-02-09 22:34:12 +00:00
BUILD.bazel Replace `escape_locations` with `escape_locations_and_make_variables` everywhere (#861) 2022-02-09 22:34:12 +00:00
README.md Added `ninja` rule for building Ninja projects (#527) 2021-03-01 15:46:25 +00:00
test_libb.cpp Pass toolchain and user env variables to make invocation (#777) 2021-11-27 07:52:54 -08:00

README.md

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