Add armeabi_cc_toolchain_config.bzl to macOS config This is required since https://github.com/bazelbuild/bazel/pull/13449
diff --git a/cc/private/toolchain/osx_cc_configure.bzl b/cc/private/toolchain/osx_cc_configure.bzl index 845a1f2..6d45e04 100644 --- a/cc/private/toolchain/osx_cc_configure.bzl +++ b/cc/private/toolchain/osx_cc_configure.bzl
@@ -84,6 +84,7 @@ overriden_tools: dictionary of overriden tools. """ paths = resolve_labels(repository_ctx, [ + "@rules_cc//cc/private/toolchain:armeabi_cc_toolchain_config.bzl", "@rules_cc//cc/private/toolchain:osx_cc_wrapper.sh.tpl", "@rules_cc//cc/private/toolchain:libtool_check_unique.cc", "@bazel_tools//tools/objc:libtool.sh", @@ -126,6 +127,10 @@ }, ) repository_ctx.symlink( + paths["@rules_cc//cc/private/toolchain:armeabi_cc_toolchain_config.bzl"], + "armeabi_cc_toolchain_config.bzl", + ) + repository_ctx.symlink( paths["@bazel_tools//tools/objc:xcrunwrapper.sh"], "xcrunwrapper.sh", )