From 0cdb6bef7b6fc912e3db0a928ddb5c2993bbe6a6 Mon Sep 17 00:00:00 2001 From: Will Lillis Date: Sun, 18 Jan 2026 02:25:25 -0500 Subject: [PATCH] fix(cli): warn user when `nm` can't be run to verify the symbols inside the parser being built --- crates/loader/src/loader.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/loader/src/loader.rs b/crates/loader/src/loader.rs index 451c6b82..e7584378 100644 --- a/crates/loader/src/loader.rs +++ b/crates/loader/src/loader.rs @@ -1305,6 +1305,11 @@ impl Loader { })); } } + } else { + warn!( + "Failed to run `nm` to verify symbols in {}", + library_path.display() + ); } Ok(())