3d338229dc
PR go/88927 runtime, internal/cpu: fix build for ARM GNU/Linux Was failing with ../../../libgo/go/internal/cpu/cpu.go:138:2: error: reference to undefined name 'doinit' 138 | doinit() | ^ Fix it by adding in Go 1.12 internal/cpu/cpu_arm.go, and the code in runtime that initializes the values. Fixes https://gcc.gnu.org/PR88927. Reviewed-on: https://go-review.googlesource.com/c/158717 From-SVN: r268131
25 lines
664 B
Go
25 lines
664 B
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package runtime
|
|
|
|
import "internal/cpu"
|
|
|
|
var randomNumber uint32
|
|
|
|
func archauxv(tag, val uintptr) {
|
|
switch tag {
|
|
case _AT_RANDOM:
|
|
// sysargs filled in startupRandomData, but that
|
|
// pointer may not be word aligned, so we must treat
|
|
// it as a byte array.
|
|
randomNumber = uint32(startupRandomData[4]) | uint32(startupRandomData[5])<<8 |
|
|
uint32(startupRandomData[6])<<16 | uint32(startupRandomData[7])<<24
|
|
case _AT_HWCAP:
|
|
cpu.HWCap = uint(val)
|
|
case _AT_HWCAP2:
|
|
cpu.HWCap2 = uint(val)
|
|
}
|
|
}
|