Skip to content
Snippets Groups Projects
Commit 7518356e authored by Jono Wenger's avatar Jono Wenger
Browse files

Add building of wasm binaries to Makefile

parent 022fcdc4
No related branches found
No related tags found
2 merge requests!67fix for latest client release,!52XX-4382 / Move indexedDb databases to web workers
......@@ -28,6 +28,12 @@ update_master:
binary:
GOOS=js GOARCH=wasm go build -ldflags '-w -s' -trimpath -o xxdk.wasm main.go
worker_binaries:
GOOS=js GOARCH=wasm go build -ldflags '-w -s' -trimpath -o xxdk-channelsIndexedDkWorker.wasm ./indexedDb/impl/channels/...
GOOS=js GOARCH=wasm go build -ldflags '-w -s' -trimpath -o xxdk-dmIndexedDkWorker.wasm ./indexedDb/impl/dm/...
binaries: binary worker_binaries
wasm_tests:
cp utils/utils_js.s utils/utils_js.s.bak
> utils/utils_js.s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment