| 1234567891011121314151617181920 |
- # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- # Exceptions. See /LICENSE for license information.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- """A Starlark file exporting detected Carbon toolchain configuration variables.
- This file gets processed by a repository rule, substituting the `VARIABLE`s with
- values, for example using an invocation of `carbon config`.
- """
- load(
- "@bazel_cc_toolchain//:clang_detected_variables.bzl",
- _clang_include_dirs = "clang_include_dirs",
- _clang_resource_dir = "clang_resource_dir",
- _sysroot_dir = "sysroot_dir",
- )
- clang_include_dirs = _clang_include_dirs
- clang_resource_dir = _clang_resource_dir
- clang_sysroot = _sysroot_dir
|