cpu_other_mips64x.go 299 B

12345678910111213
  1. // Copyright 2020 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build !linux && (mips64 || mips64le)
  5. // +build !linux
  6. // +build mips64 mips64le
  7. package cpu
  8. func archInit() {
  9. Initialized = true
  10. }