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 @@ def configure_osx_toolchain(repository_ctx, overriden_tools): 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", @@ -125,6 +126,10 @@ def configure_osx_toolchain(repository_ctx, overriden_tools): "%{env}": escape_string(get_env(repository_ctx)), }, ) + 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",