From da4c3f982adb06af3a9a61e2c30d67f794d7f32e Mon Sep 17 00:00:00 2001 From: Nikola Radakovic Date: Thu, 29 Jan 2026 10:32:06 +0000 Subject: [PATCH] Fix wrong instructions in README.md The invocation of gcc extension was wrongly present. This commit fixes that. Signed-off-by: Nikola Radakovic --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8be71cc..da4526a 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ Instead: ```starlark bazel_dep(name = "score_cpp_toolchains", version = "0.1.0") use_extension("@score_cpp_toolchains//extensions:gcc.bzl", "gcc") -gcc.use( +gcc( target_os = "linux", target_cpu = "x86_64", version = "12.2.0", @@ -96,7 +96,7 @@ use_repo(gcc, "score_gcc_toolchain") ```starlark bazel_dep(name = "score_cpp_toolchains", version = "0.2.0") use_extension("@score_cpp_toolchains//extensions:gcc.bzl", "gcc") -gcc.use( +gcc( target_os = "qnx", target_cpu = "arm64", sdp_version = "8.0.0", @@ -251,4 +251,4 @@ are used for repository authentication flows. Distributed under: - `LICENSE` -- `NOTICE` \ No newline at end of file +- `NOTICE`