add support for aarch64-unknown-linux-gnu

This commit is contained in:
りき萌 2025-06-13 20:38:00 +02:00
parent 354d49d927
commit 845c9f0f5b

View file

@ -28,6 +28,7 @@ fn main() -> Result<(), Box<dyn Error>> {
let target = match &target[..] { let target = match &target[..] {
"x86_64-unknown-linux-gnu" => "x86_64-linux-gnu", "x86_64-unknown-linux-gnu" => "x86_64-linux-gnu",
"aarch64-unknown-linux-gnu" => "aarch64-linux-gnu",
other => { other => {
eprintln!("warning: unknown target {other:?}"); eprintln!("warning: unknown target {other:?}");
&target &target