Recognize AIX style archive kind

This commit is contained in:
Qiu Chaofan 2023-01-11 11:27:29 +08:00 committed by Qiu Chaofan
parent da481403e7
commit 7037ff99af
4 changed files with 6 additions and 0 deletions

View file

@ -137,6 +137,7 @@ impl FromStr for ArchiveKind {
"bsd" => Ok(ArchiveKind::K_BSD),
"darwin" => Ok(ArchiveKind::K_DARWIN),
"coff" => Ok(ArchiveKind::K_COFF),
"aix_big" => Ok(ArchiveKind::K_AIXBIG),
_ => Err(()),
}
}