rules_foreign_cc/examples/ninja_simple
Yesudeep Mangalapilly a2f1e5d8c3
Adds toolchain for freebsd. (#794)
* Adds toolchain for freebsd.

* Address buildifier lint warnings.

* Use /usr/bin/env bash

* Leave the Linux-specific shebang alone.

* Adds note about Bazel CI issue requesting for FreeBSD support and experimental status.

* Fix typo.

* Clean up trailing whitespace.

* Updates bazel-skylib version for tests to pass on FreeBSD.

* Update foreign_cc/repositories.bzl

Co-authored-by: UebelAndre <github@uebelandre.com>
2021-11-29 10:54:06 +00:00
..
code Adds toolchain for freebsd. (#794) 2021-11-29 10:54:06 +00:00
BUILD.bazel Enable more examples tests on windows (#718) 2021-07-14 09:37:35 -07: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

README.md

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