clang_toolchain.BUILD 633 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. configs = [
  10. ("linux", "aarch64"),
  11. ("linux", "x86_64"),
  12. ("freebsd", "x86_64"),
  13. ("macos", "arm64"),
  14. ("macos", "x86_64"),
  15. ("windows", "x86_64"),
  16. ],
  17. )