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

Patch to remove hard coded -lcrypto from proxy-wasm-cpp-host on s390x #234

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions bazel/proxy_wasm_cpp_host.patch
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,28 @@ index 69c9bda..d293092 100644
}),
alwayslink = 1,
)
diff --git a/bazel/BUILD b/bazel/BUILD
index 650fa29..733c975 100644
--- a/bazel/BUILD
+++ b/bazel/BUILD
@@ -57,19 +57,6 @@ config_setting(
)

config_setting(
- name = "requested_crypto_system",
- values = {"define": "crypto=system"},
-)
-
-config_setting(
- name = "linux_s390x",
- values = {"cpu": "s390x"},
-)
-
-selects.config_setting_group(
name = "crypto_system",
- match_any = [
- ":requested_crypto_system",
- ":linux_s390x",
- ],
+ values = {"define": "crypto=system"},
)