Skip to content

Commit

Permalink
Bump bpf-tools to v1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
dmakarov committed Dec 22, 2021
1 parent bdae299 commit 7cc6262
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion programs/bpf/tests/programs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1399,7 +1399,7 @@ fn assert_instruction_count() {
("solana_bpf_rust_param_passing", 146),
("solana_bpf_rust_rand", 488),
("solana_bpf_rust_sanity", 8455),
("solana_bpf_rust_secp256k1_recover", 25216),
("solana_bpf_rust_secp256k1_recover", 25624),
("solana_bpf_rust_sha", 30692),
]);
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/bpf/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ if [[ ! -e criterion-$version.md || ! -e criterion ]]; then
fi

# Install Rust-BPF
version=v1.20
version=v1.21
if [[ ! -e bpf-tools-$version.md || ! -e bpf-tools ]]; then
(
set -e
Expand Down
2 changes: 1 addition & 1 deletion sdk/cargo-build-bpf/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ fn build_bpf_package(config: &Config, target_directory: &Path, package: &cargo_m
eprintln!("Can't get home directory path: {}", err);
exit(1);
}));
let version = "v1.20";
let version = "v1.21";
let package = "bpf-tools";
let target_path = home_dir
.join(".cache")
Expand Down

0 comments on commit 7cc6262

Please sign in to comment.