clang_toolchain.BUILD 688 B

12345678910111213141516171819202122
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. # This file is symlinked into a configured Clang toolchain repository as the
  5. # root `BUILD` file for that repository.
  6. load(":cc_toolchain_config.bzl", "cc_local_toolchain_suite")
  7. package(default_visibility = ["//visibility:public"])
  8. cc_local_toolchain_suite(
  9. name = "bazel_cc_toolchain",
  10. configs = [
  11. ("linux", "aarch64"),
  12. ("linux", "x86_64"),
  13. ("freebsd", "x86_64"),
  14. ("macos", "arm64"),
  15. ("macos", "x86_64"),
  16. ("windows", "x86_64"),
  17. ],
  18. )