mirror of https://github.com/bazelbuild/rules_cc
16 lines
540 B
Markdown
16 lines
540 B
Markdown
# Rule-based toolchains
|
|
This example showcases a fully working rule-based toolchain for Linux. This also
|
|
serves as an integration test to ensure rule-based toolchains continue to work
|
|
as intended.
|
|
|
|
The complete toolchain configuration lives [here](https://github.com/bazelbuild/rules_cc/tree/main/examples/rule_based_toolchain/toolchain).
|
|
|
|
# Trying the example
|
|
From this directory, you can run example tests that build using this toolchain
|
|
with the following command:
|
|
```
|
|
$ bazel test //...
|
|
```
|
|
|
|
This example currently only supports Linux.
|