Skip to content

Commit 5be90a4

Browse files
meteorcloudycopybara-github
authored andcommitted
Expose get_cpu_value in toolchain_config_utils.bzl
Copybara Import from #283 BEGIN_PUBLIC Expose get_cpu_value in toolchain_config_utils.bzl (#283) Addressing bazelbuild/bazel-central-registry#3260 (comment) Closes #283 END_PUBLIC COPYBARA_INTEGRATE_REVIEW=#283 from bazelbuild:meteorcloudy-patch-5 8d7f986 PiperOrigin-RevId: 700977422 Change-Id: I979446d5d79d8da465ec538632326d6d2c6932f7
1 parent 8395ec0 commit 5be90a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cc/toolchains/toolchain_config_utils.bzl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@
1414
"""Exposing some helper functions for configure cc toolchains."""
1515

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

2020
MSVC_ENVVARS = _MSVC_ENVVARS
2121

2222
find_vc_path = _find_vc_path
2323
setup_vc_env_vars = _setup_vc_env_vars
2424
escape_string = _escape_string
25+
get_cpu_value = _get_cpu_value

0 commit comments

Comments
 (0)