From 89e3c5886daabcd065cfadc57b564663db8811cd Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Mon, 6 Jan 2025 09:56:24 -0800 Subject: [PATCH] Remove optional wording from readme Fixes https://github.com/bazelbuild/rules_cc/issues/273 --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b3fb272..c8a2b80a 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,7 @@ For the list of C++ rules, see the Bazel # Getting Started -There is no need to use rules from this repository just yet. If you want to use -`rules_cc` anyway, add the following to your `WORKSPACE` file: +Add the following to your `WORKSPACE` file: ```starlark load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") @@ -47,7 +46,7 @@ There are third-party contributed hermetic toolchains you may want to investigat - zig cc: If you'd like to use the cc toolchain defined in this repo, add this to -your WORKSPACE after you include rules_cc: +your `WORKSPACE` after you include rules_cc: ```bzl load("@rules_cc//cc:repositories.bzl", "rules_cc_dependencies", "rules_cc_toolchains")