Adding a tracking case for monitoring progress of WASM target when building from OSX.
OSX developers cannot use tinygo to build WASM targets because WASM is an experimental feature in LLVM
$ tinygo build -o test.wasm test.go
error: No available targets are compatible with this triple.
The Facts:
- Tinygo can build on OSX when LLVM 7 is installed via brew. However, WASM targets are experimental in LLVM 7 and not supported by the homebrew recipe.
- WASM will be supported in LLVM 8 (Expected release March 2019)
RELATED:
Possible Workarounds:
- Wait for LLVM 8 in March of 2019
- Build LLVM 7 from source with full WASM support (Does this work?)
- ???
Adding a tracking case for monitoring progress of WASM target when building from OSX.
OSX developers cannot use tinygo to build WASM targets because WASM is an experimental feature in LLVM
The Facts:
RELATED:
Possible Workarounds: