Skip to content

Commit 65b2617

Browse files
committed
Add musl to the release triples
1 parent 450f3cd commit 65b2617

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/release.rs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,18 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
339339
}],
340340
},
341341
);
342+
h.insert(
343+
"aarch64-unknown-linux-musl",
344+
TripleRelease {
345+
suffixes: vec!["debug", "lto", "noopt"],
346+
install_only_suffix: "lto",
347+
python_version_requirement: None,
348+
conditional_suffixes: vec![ConditionalSuffixes {
349+
python_version_requirement: VersionSpecifier::from_str(">=3.13").unwrap(),
350+
suffixes: linux_suffixes_musl_freethreaded.clone(),
351+
}],
352+
},
353+
);
342354

343355
h
344356
});

0 commit comments

Comments
 (0)