Skip to content
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
10 changes: 8 additions & 2 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
# Must be first. Enables build:windows, build:linux, build:macos, build:freebsd, build:openbsd
build --enable_platform_specific_config

# The maximum number of attempts to retry a download error. The default value is 5
common --experimental_repository_downloader_retries=10
# The maximum number of attempts for http downloads. The default value is 8.
common --http_connector_attempts=16
# Scale all timeouts related to http downloads by the given factor. The default value is 1.0.
common --http_timeout_scaling=2.0

###############################################################################
# On Windows, provide: BAZEL_SH, and BAZEL_LLVM (if using clang-cl)
# On all platforms, provide: PYTHON3_BIN_PATH=python
Expand Down Expand Up @@ -54,5 +61,4 @@ build:x86_64 --copt=-mbmi
build:x86_64 --copt=-mbmi2

# ARM64-specific optimizations (if any needed in the future)
build:arm64 --copt=-march=armv8-a

build:arm64 --copt=-march=armv8-a
Loading