[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
This commit is contained in:
parent
b843118076
commit
ba42533ad6
2
Makefile
2
Makefile
|
@ -89,7 +89,7 @@ testAll: | build deps
|
||||||
# Builds the codex binary
|
# Builds the codex binary
|
||||||
exec: | build deps
|
exec: | build deps
|
||||||
echo -e $(BUILD_MSG) "build/$@" && \
|
echo -e $(BUILD_MSG) "build/$@" && \
|
||||||
$(ENV_SCRIPT) nim codex codex.nims
|
$(ENV_SCRIPT) nim codex $(NIM_PARAMS) codex.nims
|
||||||
|
|
||||||
# symlink
|
# symlink
|
||||||
codex.nims:
|
codex.nims:
|
||||||
|
|
Loading…
Reference in New Issue