We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f05c3ac commit 6f08f75Copy full SHA for 6f08f75
build.rs
@@ -21,6 +21,11 @@ fn download_filename() -> String {
21
format!("bitcoin-{}-x86_64-linux-gnu.tar.gz", &VERSION)
22
}
23
24
+#[cfg(all(target_os = "linux", target_arch = "aarch64"))]
25
+fn download_filename() -> String {
26
+ format!("bitcoin-{}-aarch64-linux-gnu.tar.gz", &VERSION)
27
+}
28
+
29
fn get_expected_sha256(filename: &str) -> Result<sha256::Hash, ()> {
30
let sha256sums_filename = format!("sha256/bitcoin-core-{}-SHA256SUMS", &VERSION);
31
#[cfg(any(
0 commit comments