| 12345678910111213141516171819202122 |
- # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- # Exceptions. See /LICENSE for license information.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- # This file is symlinked into a configured Clang toolchain repository as the
- # root `BUILD` file for that repository.
- load(":cc_toolchain_config.bzl", "cc_local_toolchain_suite")
- package(default_visibility = ["//visibility:public"])
- cc_local_toolchain_suite(
- name = "bazel_cc_toolchain",
- configs = [
- ("linux", "aarch64"),
- ("linux", "x86_64"),
- ("freebsd", "x86_64"),
- ("macos", "arm64"),
- ("macos", "x86_64"),
- ("windows", "x86_64"),
- ],
- )
|