File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ This repository is structured and versioned as a Bazel module and is intended to
2727``` bash
2828.
2929│
30- ├── extentions # Module extensions for GCC/QCC toolchains
30+ ├── extensions # Module extensions for GCC/QCC toolchains
3131│ ├── BUILD
3232│ └── gcc.bzl
3333│
@@ -81,7 +81,7 @@ Instead:
8181
8282``` starlark
8383bazel_dep(name = " score_cpp_toolchains" , version = " 0.1.0" )
84- use_extension(" @score_cpp_toolchains//bazel/extentions :gcc.bzl" , " gcc" )
84+ use_extension(" @score_cpp_toolchains//extensions :gcc.bzl" , " gcc" )
8585gcc.use(
8686 target_os = " linux" ,
8787 target_cpu = " x86_64" ,
@@ -95,7 +95,7 @@ use_repo(gcc, "score_gcc_toolchain")
9595
9696``` starlark
9797bazel_dep(name = " score_cpp_toolchains" , version = " 0.2.0" )
98- use_extension(" @score_cpp_toolchains//bazel/extentions :gcc.bzl" , " gcc" )
98+ use_extension(" @score_cpp_toolchains//extensions :gcc.bzl" , " gcc" )
9999gcc.use(
100100 target_os = " qnx" ,
101101 target_cpu = " arm64" ,
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ local_path_override(
5858# * ES: Runtime-EcoSystem
5959#
6060# *******************************************************************************
61- gcc = use_extension ("@score_bazel_cpp_toolchains//extentions :gcc.bzl" , "gcc" , dev_dependency = True )
61+ gcc = use_extension ("@score_bazel_cpp_toolchains//extensions :gcc.bzl" , "gcc" , dev_dependency = True )
6262
6363# *******************************************************************************
6464# Setting default GCC (CPU:x86_64|OS:Linux|V:12.2.0|ES:posix)
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments