Internal change

PiperOrigin-RevId: 513329841
pull/12109/head
Mike Kruskal 2023-03-01 13:45:10 -08:00 committed by Deanna Garcia
parent af7f9d52d6
commit c9092fe0ed
2 changed files with 21 additions and 1 deletions

View File

@ -179,7 +179,7 @@ cc_binary(
linkopts = LINK_OPTS,
features = select({
# This isn't possible on mac because there is no static library for lcrt0.o
"@platforms//os:osx": [],
"//build_defs:config_osx": [],
# When cross-compiling we need to statically link all C++ libraries.
"//conditions:default": ["fully_static_link"],
}),

View File

@ -1,5 +1,6 @@
# Internal Starlark definitions for Protobuf.
load("@bazel_skylib//lib:selects.bzl", "selects")
load("@rules_cc//cc:defs.bzl", starlark_cc_proto_library = "cc_proto_library")
load("@rules_pkg//:mappings.bzl", "pkg_files", "strip_prefix")
load(":cc_proto_blacklist_test.bzl", "cc_proto_blacklist_test")
@ -83,6 +84,25 @@ config_setting(
},
)
config_setting(
name = "config_osx_aarch64",
values = {"cpu": "osx-aarch_64"},
)
config_setting(
name = "config_osx_x86_64",
values = {"cpu": "osx-aarch_64"},
)
selects.config_setting_group(
name = "config_osx",
match_any = [
"@platforms//os:osx",
":config_osx_aarch64",
":config_osx_x86_64",
]
)
# Internal testing:
starlark_cc_proto_library(