From ba42533ad6318fa471373e17272b868dbb2b2149 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Sat, 27 Aug 2022 14:44:54 -0500 Subject: [PATCH] [build] pass NIM_PARAMS to nim compiler in exec target of Makefile with this change `make exec` runs a release build instead of a debug build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 56164341..55d5b441 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,7 @@ testAll: | build deps # Builds the codex binary exec: | build deps echo -e $(BUILD_MSG) "build/$@" && \ - $(ENV_SCRIPT) nim codex codex.nims + $(ENV_SCRIPT) nim codex $(NIM_PARAMS) codex.nims # symlink codex.nims: