mirror of https://github.com/tinygo-org/tinygo.git
Browse Source
The wasm build tag together with GOARCH=arm was causing problems in the internal/cpu package. In general, I think having two architecture build tag will only cause problems (in this case, wasm and arm) so I've removed the wasm build tag and replaced it with tinygo.wasm. This is similar to the tinygo.riscv build tag, which is used for older Go versions that don't yet have RISC-V support in the standard library (and therefore pretend to be GOARCH=arm instead).pull/1738/merge
Ayke van Laethem
3 years ago
committed by
Ron Evans
11 changed files with 11 additions and 11 deletions
@ -1,4 +1,4 @@ |
|||
// +build wasm
|
|||
// +build tinygo.wasm
|
|||
|
|||
package runtime |
|||
|
@ -1,4 +1,4 @@ |
|||
// +build wasm
|
|||
// +build tinygo.wasm
|
|||
|
|||
package runtime |
|||
|
Loading…
Reference in new issue