Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This repository is structured and versioned as a Bazel module and is intended to
```bash
.
├── extentions # Module extensions for GCC/QCC toolchains
├── extensions # Module extensions for GCC/QCC toolchains
│ ├── BUILD
│ └── gcc.bzl
Expand Down Expand Up @@ -81,7 +81,7 @@ Instead:

```starlark
bazel_dep(name = "score_cpp_toolchains", version = "0.1.0")
use_extension("@score_cpp_toolchains//bazel/extentions:gcc.bzl", "gcc")
use_extension("@score_cpp_toolchains//extensions:gcc.bzl", "gcc")
gcc.use(
target_os = "linux",
target_cpu = "x86_64",
Expand All @@ -95,7 +95,7 @@ use_repo(gcc, "score_gcc_toolchain")

```starlark
bazel_dep(name = "score_cpp_toolchains", version = "0.2.0")
use_extension("@score_cpp_toolchains//bazel/extentions:gcc.bzl", "gcc")
use_extension("@score_cpp_toolchains//extensions:gcc.bzl", "gcc")
gcc.use(
target_os = "qnx",
target_cpu = "arm64",
Expand Down
2 changes: 1 addition & 1 deletion examples/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ local_path_override(
# * ES: Runtime-EcoSystem
#
# *******************************************************************************
gcc = use_extension("@score_bazel_cpp_toolchains//extentions:gcc.bzl", "gcc", dev_dependency = True)
gcc = use_extension("@score_bazel_cpp_toolchains//extensions:gcc.bzl", "gcc", dev_dependency = True)

# *******************************************************************************
# Setting default GCC (CPU:x86_64|OS:Linux|V:12.2.0|ES:posix)
Expand Down
File renamed without changes.
File renamed without changes.