From 5e8db67378f2bf74299822f12a010552be46e910 Mon Sep 17 00:00:00 2001 From: kaichaosun Date: Fri, 5 Sep 2025 17:48:56 +0800 Subject: [PATCH] chore: more build fix --- waku.nimble | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waku.nimble b/waku.nimble index ef2712952..b7e0b8eb2 100644 --- a/waku.nimble +++ b/waku.nimble @@ -64,7 +64,7 @@ proc buildBinary(name: string, srcDir = "./", params = "", lang = "c") = mkDir "build" ensureRln() - exec "nim " & lang & " --out:build/" & name & " --mm:refc " & " --passL:build/librln.a --passL:-L$(getCurrentDir()) " & params & " " & + exec "nim " & lang & " --out:build/" & name & " --mm:refc " & " --passL:build/librln.a " & params & " " & srcDir & name & ".nim" proc buildLibrary(name: string, srcDir = "./", params = "", `type` = "static") =