Этот коммит содержится в:
Ayke van Laethem 2018-10-18 15:05:21 +02:00
родитель daf92226d8
коммит fd45410c24
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: E97FF5335DFDFDED
2 изменённых файлов: 12 добавлений и 1 удалений

11
src/runtime/arch_arm.go Обычный файл
Просмотреть файл

@ -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,4 +1,4 @@
// +build wasm,!avr
// +build wasm,!arm,!avr
package runtime