From 152d2756fcf5ff2910263f3f87485b86b8fcf4bc 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 (cherry picked from commit 0cdb6bef7b6fc912e3db0a928ddb5c2993bbe6a6) --- 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 11c8b673..6a55f0b8 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(())