fix(cli): warn user when nm can't be run to verify the symbols inside

the parser being built
This commit is contained in:
Will Lillis 2026-01-18 02:25:25 -05:00
parent cd603fa981
commit 0cdb6bef7b

View file

@ -1305,6 +1305,11 @@ impl Loader {
}));
}
}
} else {
warn!(
"Failed to run `nm` to verify symbols in {}",
library_path.display()
);
}
Ok(())