2019-10-29 05:10:20 +08:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2020-04-30 10:02:15 +08:00
|
|
|
// +build !386,!amd64,!amd64p32,!arm64
|
2019-10-29 05:10:20 +08:00
|
|
|
|
|
|
|
package cpu
|
|
|
|
|
2020-11-09 23:25:54 +08:00
|
|
|
func archInit() {
|
2020-04-30 10:02:15 +08:00
|
|
|
if err := readHWCAP(); err != nil {
|
2019-10-29 05:10:20 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
doinit()
|
|
|
|
Initialized = true
|
|
|
|
}
|