runtime: add proper arm arch

This commit is contained in:
Ayke van Laethem
2018-10-18 15:05:21 +02:00
parent daf92226d8
commit fd45410c24
2 changed files with 12 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
// +build arm
package runtime
const GOARCH = "arm"
// The length type used inside strings and slices.
type lenType uint32
// The bitness of the CPU (e.g. 8, 32, 64).
const TargetBits = 32
+1 -1
View File
@@ -1,4 +1,4 @@
// +build wasm,!avr
// +build wasm,!arm,!avr
package runtime