From debae5232b81f4f0adcdc25ad8c8d2645a6ea376 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 11 Sep 2019 14:06:05 +0000 Subject: golang.org/x/sys/cpu: define doinit when needed Should fix the build on riscv64 and other systems. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/194641 From-SVN: r275650 --- libgo/go/golang.org/x/sys/cpu/cpu_linux_other.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 libgo/go/golang.org/x/sys/cpu/cpu_linux_other.go (limited to 'libgo') diff --git a/libgo/go/golang.org/x/sys/cpu/cpu_linux_other.go b/libgo/go/golang.org/x/sys/cpu/cpu_linux_other.go new file mode 100644 index 0000000..6e8f9fe --- /dev/null +++ b/libgo/go/golang.org/x/sys/cpu/cpu_linux_other.go @@ -0,0 +1,9 @@ +// Copyright 2019 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. + +// +build !amd64,!amd64p32,!386,!arm64,!ppc64,!ppc64le,!s390x + +package cpu + +func doinit() {} -- cgit v1.1