Skip to content

Commit

Permalink
comment out some uncommon arches
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronOpfer committed Jul 14, 2024
1 parent e5ab647 commit 9552c4d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ use clap::Parser;
use rayon::prelude::*;

const ARCHITECTURES: &[&str] = &[
"freebsd-64",
"linux-32",
//"freebsd-64",
//"linux-32",
"linux-64",
"linux-aarch64",
"linux-armv6l",
"linux-armv7l",
"linux-ppc64",
//"linux-armv6l",
//"linux-armv7l",
//"linux-ppc64",
"linux-ppc64le",
"linux-riscv64",
"linux-s390x",
//"linux-riscv64",
//"linux-s390x",
"osx-64",
"osx-arm64",
"win-32",
//"win-32",
"win-64",
"win-arm64",
"zos-z",
//"win-arm64",
//"zos-z",
];

fn architectures_parser(value: &str) -> Result<String, &'static str> {
Expand Down

0 comments on commit 9552c4d

Please sign in to comment.