Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 1 addition & 6 deletions bazel/envoy_binary.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,7 @@ def _envoy_select_exported_symbols(xs):
# Compute the final linkopts based on various options.
def _envoy_linkopts():
return select({
# The macOS system library transitively links common libraries (e.g., pthread).
"@envoy//bazel:apple": [
# See note here: https://luajit.org/install.html
"-pagezero_size 10000",
"-image_base 100000000",
],
"@envoy//bazel:apple": [],
"@envoy//bazel:windows_opt_build": [
"-DEFAULTLIB:ws2_32.lib",
"-DEFAULTLIB:iphlpapi.lib",
Expand Down
6 changes: 1 addition & 5 deletions bazel/envoy_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,7 @@ def _envoy_cc_test_infrastructure_library(
# Compute the test linkopts based on various options.
def _envoy_test_linkopts():
return select({
"@envoy//bazel:apple": [
# See note here: https://luajit.org/install.html
"-pagezero_size 10000",
"-image_base 100000000",
],
"@envoy//bazel:apple": [],
"@envoy//bazel:windows_x86_64": [
"-DEFAULTLIB:ws2_32.lib",
"-DEFAULTLIB:iphlpapi.lib",
Expand Down