cpu_other.go 457 B

1234567891011121314151617181920212223
  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. // +build !386
  5. // +build !amd64
  6. // +build !amd64p32
  7. // +build !arm
  8. // +build !arm64
  9. // +build !mips
  10. // +build !mipsle
  11. // +build !mips64
  12. // +build !mips64le
  13. // +build !ppc64
  14. // +build !ppc64le
  15. // +build !riscv
  16. // +build !riscv64
  17. // +build !s390x
  18. // +build !wasm
  19. package cpu
  20. func initOptions() {}