Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 1 addition & 4 deletions deps/openssl.BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,6 @@ FIX_OPENSSL_PATHS = """

configure_make(
name = "openssl",
# TODO(team:agent-build): Find a better way to utilize more than 1 core
args = [
"-j 16",
],
configure_prefix = select({
"@platforms//os:windows": "perl",
"//conditions:default": "",
Expand Down Expand Up @@ -158,6 +154,7 @@ configure_make(
"//conditions:default": "placeholder" + "_" * 50,
}),
lib_source = ":all_srcs",
resource_size = "enormous",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😆

out_include_dir = "include",
out_interface_libs = select({
"@platforms//os:windows": [
Expand Down
5 changes: 1 addition & 4 deletions deps/openssl_fips.BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ FIPS_LINUX = "fips.so"

configure_make(
name = "openssl_fips",
# TODO(team:agent-build): Find a better way to utilize more than 1 core
args = [
"-j 16",
],
configure_command = "Configure",
configure_in_place = select({
"@platforms//os:windows": True,
Expand All @@ -44,6 +40,7 @@ configure_make(
}),
copts = ["-O2"],
lib_source = ":all",
resource_size = "enormous",
out_shared_libs = select({
"@platforms//os:linux": [
"ossl-modules/" + FIPS_LINUX,
Expand Down
Loading