From e5083b583d538728590f8e3bdf15a77460ccc50f Mon Sep 17 00:00:00 2001 From: yuyawk <46620009+yuyawk@users.noreply.github.com> Date: Wed, 11 Dec 2024 02:16:39 +0900 Subject: [PATCH] set default platform condition to linux (#95) --- lang/cc/build_error.bzl | 1 + 1 file changed, 1 insertion(+) diff --git a/lang/cc/build_error.bzl b/lang/cc/build_error.bzl index d40016f..51197da 100644 --- a/lang/cc/build_error.bzl +++ b/lang/cc/build_error.bzl @@ -605,6 +605,7 @@ def cc_build_error( Label("//platforms/os:linux"): "linux", Label("//platforms/os:macos"): "macos", Label("//platforms/os:windows"): "windows", + "//conditions:default": "linux", }), visibility = ["//visibility:private"], testonly = testonly,