carbon_clang_variables.bzl 594 B

12345678910111213141516
  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. """A Starlark file exporting detected Carbon toolchain configuration variables."""
  5. load(
  6. "@carbon_toolchain_config//:carbon_detected_variables.bzl",
  7. _clang_include_dirs = "clang_include_dirs",
  8. _clang_resource_dir = "clang_resource_dir",
  9. _clang_sysroot = "clang_sysroot",
  10. )
  11. clang_include_dirs = _clang_include_dirs
  12. clang_resource_dir = _clang_resource_dir
  13. clang_sysroot = _clang_sysroot