mirror of
https://github.com/nolen777/eagle0.git
synced 2026-07-28 22:15:42 +00:00
* Upgrade rules_scala 7.1.5, Scala 3.7.4, protobuf 32.1 - Update rules_scala from 7.1.1 to 7.1.5 - Update Scala from 3.7.2 to 3.7.4 - Update protobuf from 29.2 to 32.1 (required by rules_scala 7.1.5+) - Add force_version for Maven dependency conflicts (gson, errorprone, guava) - Update -Wconf pattern in tools/BUILD.bazel for Bazel 7/8 compatibility - Add -Wno-deprecated-copy-with-dtor to suppress protobuf 32.x warning Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Add grpc 1.76.0, protobuf 33.0, and Bazel 7.7.1 compatibility fixes - Upgrade grpc from 1.71.0 to 1.76.0.bcr.1 (required for protobuf 33.0) - Upgrade protobuf from 32.1 to 33.0 (matches grpc 1.76.0 expectations) - Upgrade Bazel from 7.6.1 to 7.7.1 - Add single_version_override for rules_swift 3.1.2 (grpc needs 3.x, rules_apple needs 2.x) - Add --features=-module_maps workaround for grpc cf_event_engine macOS build issue Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
bazel-1.0.0.bazelrc
|
|
|
|
# for now: filter out annoying TASTY warnings
|
|
common --ui_event_filters=-INFO
|
|
|
|
common --enable_bzlmod
|
|
|
|
# Don't use toolchains_llvm for the swift app build
|
|
common:mactools --ignore_dev_dependency
|
|
|
|
# Try to speed up sandboxes
|
|
common --experimental_reuse_sandbox_directories
|
|
|
|
common --enable_platform_specific_config
|
|
|
|
common --strategy=Scalac=worker
|
|
common --worker_sandboxing
|
|
|
|
common --local_test_jobs=64
|
|
common --jobs=64
|
|
|
|
common --cxxopt="--std=c++23"
|
|
common --cxxopt="-Wno-deprecated-non-prototype"
|
|
common --host_cxxopt="--std=c++23"
|
|
|
|
common --javacopt="-Xlint:-options"
|
|
|
|
# suppress warnings due to https://developer.apple.com/forums/thread/733317
|
|
# Use host_linkopt for macOS-specific flags to avoid passing them to Linux cross-compilation
|
|
common:macos --host_linkopt=-Wl,-no_warn_duplicate_libraries
|
|
|
|
# Workaround for grpc cf_event_engine build error on macOS with Bazel 7.x
|
|
# See: https://github.com/grpc/grpc/issues/37619
|
|
common:macos --features=-module_maps
|
|
|
|
# Fix Xcode version caching issue - avoids need for `bazel clean --expunge` after Xcode updates
|
|
common:macos --repo_env=DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
|
|
|
|
common --java_language_version=21
|
|
common --java_runtime_version=remotejdk_21
|
|
common --tool_java_language_version=21
|
|
common --tool_java_runtime_version=remotejdk_21
|
|
|
|
# Workspace status for build stamping (git commit, timestamp)
|
|
common --workspace_status_command=tools/workspace_status.sh
|
|
common --stamp
|