mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-20 20:48:43 +00:00
Optimize: Avoid spawning ldd
if built with Glibc
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
888627ce87
commit
7997c73cb2
1 changed files with 22 additions and 4 deletions
|
@ -133,7 +133,20 @@ mod linux {
|
||||||
use super::{Command, Output, TARGET};
|
use super::{Command, Output, TARGET};
|
||||||
|
|
||||||
pub(super) async fn detect_targets_linux() -> Vec<String> {
|
pub(super) async fn detect_targets_linux() -> Vec<String> {
|
||||||
let abi = parse_abi();
|
let (abi, libc) = parse_abi_and_libc();
|
||||||
|
|
||||||
|
match libc {
|
||||||
|
// Glibc can only be dynamically linked.
|
||||||
|
// If we can run this binary, then it means that the target
|
||||||
|
// supports both glibc and musl.
|
||||||
|
Libc::Glibc => {
|
||||||
|
return vec![
|
||||||
|
create_target_str("gnu", abi),
|
||||||
|
create_target_str("musl", abi),
|
||||||
|
]
|
||||||
|
}
|
||||||
|
_ => (),
|
||||||
|
}
|
||||||
|
|
||||||
if let Ok(Output {
|
if let Ok(Output {
|
||||||
status: _,
|
status: _,
|
||||||
|
@ -173,13 +186,18 @@ mod linux {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_abi() -> &'static str {
|
enum Libc {
|
||||||
|
Glibc,
|
||||||
|
Musl,
|
||||||
|
}
|
||||||
|
|
||||||
|
fn parse_abi_and_libc() -> (&'static str, Libc) {
|
||||||
let last = TARGET.rsplit_once('-').unwrap().1;
|
let last = TARGET.rsplit_once('-').unwrap().1;
|
||||||
|
|
||||||
if let Some(libc_version) = last.strip_prefix("musl") {
|
if let Some(libc_version) = last.strip_prefix("musl") {
|
||||||
libc_version
|
(libc_version, Libc::Musl)
|
||||||
} else if let Some(libc_version) = last.strip_prefix("gnu") {
|
} else if let Some(libc_version) = last.strip_prefix("gnu") {
|
||||||
libc_version
|
(libc_version, Libc::Glibc)
|
||||||
} else {
|
} else {
|
||||||
panic!("Unrecognized libc")
|
panic!("Unrecognized libc")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue