From 59ed6bfeca776fa96e0d1385751e6fe001e0a892 Mon Sep 17 00:00:00 2001 From: Jason Bedard Date: Wed, 23 Feb 2022 14:49:02 -0800 Subject: [PATCH] build: add darwin_arm64 support May also require a fix or patch to the cc config: https://github.com/bazelbuild/bazel/issues/13514#issuecomment-847917936 --- bazel/remote-execution/cpp/BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/bazel/remote-execution/cpp/BUILD.bazel b/bazel/remote-execution/cpp/BUILD.bazel index 83c3fda08..c7969d632 100644 --- a/bazel/remote-execution/cpp/BUILD.bazel +++ b/bazel/remote-execution/cpp/BUILD.bazel @@ -11,6 +11,7 @@ cc_toolchain_suite( name = "cc_toolchain_suite", toolchains = { "k8": ":cc_compiler_k8", + "darwin_arm64": ":cc_compiler_k8", }, )