clang_toolchain.BUILD 569 B

1234567891011121314151617181920
  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. cc_local_toolchain_suite(
  8. name = "bazel_cc_toolchain",
  9. cpus = [
  10. "aarch64",
  11. "darwin",
  12. "darwin_arm64",
  13. "freebsd",
  14. "k8",
  15. "x64_windows",
  16. ],
  17. )