clang_configs.bzl 438 B

1234567891011121314
  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. """Lists (os, cpu) combinations supported by the Carbon build system."""
  5. clang_configs = [
  6. ("linux", "aarch64"),
  7. ("linux", "x86_64"),
  8. ("freebsd", "x86_64"),
  9. ("macos", "arm64"),
  10. ("macos", "x86_64"),
  11. ("windows", "x86_64"),
  12. ]