use crate::elf;
use std::path::Path;
use ex::fs;
use snafu::ResultExt;
pub fn has_debug_syms(path: &Path) -> elf::parse::Result<bool> {
let bytes = fs::read(path).context(elf::parse::ReadSnafu)?;
let elf = elf::parse(path, &bytes)?;
Ok(elf
.section_headers
.iter()
.any(|hdr| elf.shdr_strtab.get_at(hdr.sh_name) == Some(".debug_info")))
}