From 134651288c3628aee2e791a6995dd5158dfdd9eb Mon Sep 17 00:00:00 2001 From: Chuck Grindel Date: Mon, 4 Dec 2023 12:37:12 -0700 Subject: [PATCH] Add darwin_x86_64 as a CPU value that can be returned in Bazel 7.0.0. --- sh/posix.bzl | 1 + 1 file changed, 1 insertion(+) diff --git a/sh/posix.bzl b/sh/posix.bzl index 0829c66..81395d2 100644 --- a/sh/posix.bzl +++ b/sh/posix.bzl @@ -191,6 +191,7 @@ toolchain( "arm64_windows": "windows", "darwin": "osx", "darwin_arm64": "osx", + "darwin_x86_64": "osx", "x64_windows": "windows", }.get(cpu, "linux"), toolchain_type = TOOLCHAIN_TYPE,