CosmWasm / wasmvm

Go bindings to the CosmWasm VM
Apache License 2.0
173 stars 98 forks source link

Commit pre-built dlls for go-cosmwasm #8

Closed ethanfrey closed 4 years ago

ethanfrey commented 4 years ago

We should at least support:

and windows if possible

Add the build instructions to the Makefile and commit the stable dlls to source. Anyone importing a tagged release from a go program should not have to worry about rust setup - they just use the prebuilts.

Only people working on this repo (or trying to run from an unreleased master) should care.

ethanfrey commented 4 years ago

It seems linux -> windows cross-compile is decently supported. linux -> osx not so.

I found this article that might help: https://wapl.es/rust/2019/02/17/rust-cross-compile-linux-to-macos.html

ethanfrey commented 4 years ago

Maybe I will have to make native compile on the other platforms... just run virtual machines

ethanfrey commented 4 years ago

Maybe this issue on osx rustc dylibs is relevant. https://github.com/rust-lang/rust/issues/28640

In any case, I definitely need a mac system to test this on