Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak third_party/BUILD for OpenBSD. #10639

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions third_party/BUILD
Expand Up @@ -469,6 +469,7 @@ UNNECESSARY_DYNAMIC_LIBRARIES = select({
"//src/conditions:arm": "*.so *.jnilib *.dll",
"//src/conditions:linux_aarch64": "*.so *.jnilib *.dll",
"//src/conditions:linux_ppc": "*.so *.jnilib *.dll",
"//src/conditions:openbsd": "*.so *.jnilib *.dll",
aldersondrive marked this conversation as resolved.
Show resolved Hide resolved
# Play it safe -- better have a big binary than a slow binary
# zip -d does require an argument. Supply something bogus.
"//conditions:default": "*.bogusextension",
Expand Down Expand Up @@ -627,6 +628,11 @@ config_setting(
values = {"host_cpu": "freebsd"},
)

config_setting(
name = "openbsd",
values = {"host_cpu": "openbsd"},
)

config_setting(
name = "s390x",
values = {"host_cpu": "s390x"},
Expand Down