From b0f590f09e8373b27c002534838bd721ad9c8b34 Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Mon, 20 Sep 2021 09:11:31 +0200 Subject: [PATCH] Improve cannot find str.zig error --- compiler/build/src/link.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/build/src/link.rs b/compiler/build/src/link.rs index d3f7aba399..1103ca6e2f 100644 --- a/compiler/build/src/link.rs +++ b/compiler/build/src/link.rs @@ -56,7 +56,7 @@ fn find_zig_str_path() -> PathBuf { return zig_str_path; } - panic!("cannot find `str.zig`") + panic!("cannot find `str.zig`. Launch me from either the root of the roc repo or one level down(roc/examples, roc/cli...)") } fn find_wasi_libc_path() -> PathBuf {