switch to CGO-free builds

This commit is contained in:
Aine
2024-04-30 09:26:16 +03:00
parent 0e3655195a
commit 6a63e44bfc
1412 changed files with 5066605 additions and 277003 deletions

10
vendor/modernc.org/mathutil/sqr_std.go generated vendored Normal file
View File

@@ -0,0 +1,10 @@
//go:build riscv64 || loong64
// +build riscv64 loong64
package mathutil
func (f *float) sqr() {
f.n.Mul(f.n, f.n)
f.fracBits *= 2
f.normalize()
}