Skip to content

Commit 8ab815b

Browse files
committed
Move to internal package
1 parent a775661 commit 8ab815b

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

crosstool/apple_cc_configure_extension.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Extension configuring the C++ toolchain on macOS."""
22

33
load("@bazel_skylib//lib:modules.bzl", "modules")
4-
load(":setup_internal.bzl", "apple_cc_autoconf", "apple_cc_autoconf_toolchains")
4+
load("//crosstool/internal:setup.bzl", "apple_cc_autoconf", "apple_cc_autoconf_toolchains")
55

66
def _apple_cc_configure_extension_impl():
77
apple_cc_autoconf_toolchains(name = "local_config_apple_cc_toolchains")

crosstool/internal/BUILD.bazel

Whitespace-only changes.

crosstool/setup_internal.bzl renamed to crosstool/internal/setup.bzl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
load("//crosstool:osx_cc_configure.bzl", "configure_osx_toolchain")
44

5-
visibility("private")
6-
75
_DISABLE_ENV_VAR = "BAZEL_NO_APPLE_CPP_TOOLCHAIN"
86
_OLD_DISABLE_ENV_VAR = "BAZEL_USE_CPP_ONLY_TOOLCHAIN"
97

crosstool/setup.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Configure the Apple CC toolchain"""
22

3-
load(":setup_internal.bzl", "apple_cc_autoconf", "apple_cc_autoconf_toolchains")
3+
load("//crosstool/internal:setup.bzl", "apple_cc_autoconf", "apple_cc_autoconf_toolchains")
44

55
# buildifier: disable=unnamed-macro
66
def apple_cc_configure():

0 commit comments

Comments
 (0)