Skip to content

Commit

Permalink
Expose get_cpu_value in toolchain_config_utils.bzl
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorcloudy authored Nov 28, 2024
1 parent 8395ec0 commit 8d7f986
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cc/toolchains/toolchain_config_utils.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@
"""Exposing some helper functions for configure cc toolchains."""

load("//cc/private/toolchain:cc_configure.bzl", _MSVC_ENVVARS = "MSVC_ENVVARS")
load("//cc/private/toolchain:lib_cc_configure.bzl", _escape_string = "escape_string")
load("//cc/private/toolchain:lib_cc_configure.bzl", _escape_string = "escape_string", _get_cpu_value = "get_cpu_value")
load("//cc/private/toolchain:windows_cc_configure.bzl", _find_vc_path = "find_vc_path", _setup_vc_env_vars = "setup_vc_env_vars")

MSVC_ENVVARS = _MSVC_ENVVARS

find_vc_path = _find_vc_path
setup_vc_env_vars = _setup_vc_env_vars
escape_string = _escape_string
get_cpu_value = _get_cpu_value

0 comments on commit 8d7f986

Please sign in to comment.