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: 5 additions & 2 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,12 @@ build:nomacos --test_tag_filters=-macos_only --build_tag_filters=-macos_only
build:benchmark --config=release-common
build:benchmark-profile --config=benchmark --@rules_rust//rust/settings:extra_rustc_flag='-Cdebuginfo=2' --force_pic

# Specifies that panics should automatically be treated as a panic.
# Specifies that panics should use immediate-abort to match rust-std-mobile's prebuilt std.
# This requires RUSTC_BOOTSTRAP=1 and -Zunstable-options since immediate-abort is a nightly-only option.
build:abort-panic --action_env=RUSTC_BOOTSTRAP=1
build:abort-panic --@rules_rust//rust/settings:extra_rustc_flag=-Zunstable-options
build:abort-panic --@rules_rust//rust/settings:extra_rustc_flag=-C
build:abort-panic --@rules_rust//rust/settings:extra_rustc_flag=panic=abort
build:abort-panic --@rules_rust//rust/settings:extra_rustc_flag=panic=immediate-abort

# This attempts to match what cargo-fuzz does, but it's likely a moving target with many options.
# Occasionally check back to see if anything has changed over there.
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Test locations:

- iOS: Xcode 16.2, minimum iOS 15.0
- Android: JDK 17, NDK 27.2, minSdk 23
- Rust: 1.90.0
- Rust: 1.95.0

## Key Dependencies

Expand Down
Loading
Loading