Update x/sys, x/net and bbolt modules to support Risc-V

Signed-off-by: CarlosEDP <me@carlosedp.com>
This commit is contained in:
CarlosEDP
2019-06-07 16:53:51 -03:00
parent 02ed02eca5
commit fb6b0ae4c6
168 changed files with 41350 additions and 9472 deletions

15
vendor/golang.org/x/sys/cpu/cpu_wasm.go generated vendored Normal file
View File

@@ -0,0 +1,15 @@
// 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 wasm
package cpu
// We're compiling the cpu package for an unknown (software-abstracted) CPU.
// Make CacheLinePad an empty struct and hope that the usual struct alignment
// rules are good enough.
const cacheLineSize = 0
func doinit() {}