-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathfetch_ld.rs
41 lines (33 loc) · 1.17 KB
/
fetch_ld.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use crate::cpu_arch::CpuArch;
use crate::libc_deb;
use crate::libc_version::LibcVersion;
use colored::Colorize;
use snafu::ResultExt;
use snafu::Snafu;
use version_compare::Cmp;
#[derive(Debug, Snafu)]
pub enum Error {
#[snafu(display("libc deb error: {}", source))]
Deb { source: libc_deb::Error },
#[snafu(display("failed writing to linker file: {}", source))]
Write { source: std::io::Error },
}
pub type Result = std::result::Result<(), Error>;
/// Download linker compatible with libc version `ver` and save to directory
/// `dir`
pub fn fetch_ld(ver: &LibcVersion) -> Result {
println!("{}", "fetching linker".green().bold());
let deb_file_name = format!("libc6_{}.deb", ver);
let ld_name = if version_compare::compare_to(&ver.string_short, "2.34", Cmp::Lt).unwrap() {
format!("ld-{}.so", ver.string_short)
} else {
match ver.arch {
CpuArch::I386 => "ld-linux.so.2",
CpuArch::Amd64 => "ld-linux-x86-64.so.2",
}
.to_string()
};
let out_name = format!("ld-{}.so", ver.string_short);
libc_deb::write_ubuntu_pkg_file(&deb_file_name, &ld_name, &out_name).context(DebSnafu)?;
Ok(())
}