Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

compile with --threads:off Update cart.nimble #742

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cli/assets/templates/nim/cart.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ let outFile = "build" / "cart.wasm"
requires "nim >= 1.4.0"

task dbg, "Build the cartridge in debug mode":
exec &"nim c -d:nimNoQuit -o:{outFile} src/cart.nim"
exec &"nim c --threads:off -d:nimNoQuit -o:{outFile} src/cart.nim"

task rel, "Build the cartridge with all optimizations":
exec &"nim c -d:nimNoQuit -d:danger -o:{outFile} src/cart.nim"
exec &"nim c --threads:off -d:nimNoQuit -d:danger -o:{outFile} src/cart.nim"

after rel:
let exe = findExe("wasm-opt")
if exe != "":
exec(&"wasm-opt -Oz --zero-filled-memory --strip-producers {outFile} -o {outFile}")
exec(&"wasm-opt --enable-bulk-memory -Oz --zero-filled-memory --strip-producers {outFile} -o {outFile}")
else:
echo "Tip: wasm-opt was not found. Install it from binaryen for smaller builds!"
echo "Tip: wasm-opt was not found. Install it from binaryen for smaller builds!"
Loading