* cryto/kzg4844: pull in the C and Go libs for KZG cryptography * go.mod: pull in the KZG libraries * crypto/kzg4844: add basic becnhmarks for ballpark numbers * cmd, crypto: integrate both CKZG and GoKZG all the time, add flag * cmd/utils, crypto/kzg4844: run library init on startup * crypto/kzg4844: make linter happy * crypto/kzg4844: push missing file * crypto/kzg4844: fully disable CKZG but leave in the sources * build, crypto/kzg4844, internal: link CKZG by default and with portable mode * crypto/kzg4844: drop verifying the trusted setup in gokzg * internal/build: yolo until it works? * cmd/utils: make flag description friendlier Co-authored-by: Martin Holst Swende <martin@swende.se> * crypto/ckzg: no need for double availability check * build: tiny flag cleanup nitpick --------- Co-authored-by: Martin Holst Swende <martin@swende.se>
		
			
				
	
	
		
			129 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 The go-ethereum Authors
 | 
						|
// This file is part of the go-ethereum library.
 | 
						|
//
 | 
						|
// The go-ethereum library is free software: you can redistribute it and/or modify
 | 
						|
// it under the terms of the GNU Lesser General Public License as published by
 | 
						|
// the Free Software Foundation, either version 3 of the License, or
 | 
						|
// (at your option) any later version.
 | 
						|
//
 | 
						|
// The go-ethereum library is distributed in the hope that it will be useful,
 | 
						|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 | 
						|
// GNU Lesser General Public License for more details.
 | 
						|
//
 | 
						|
// You should have received a copy of the GNU Lesser General Public License
 | 
						|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 | 
						|
package build
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"log"
 | 
						|
	"os"
 | 
						|
	"os/exec"
 | 
						|
	"path/filepath"
 | 
						|
	"runtime"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
type GoToolchain struct {
 | 
						|
	Root string // GOROOT
 | 
						|
 | 
						|
	// Cross-compilation variables. These are set when running the go tool.
 | 
						|
	GOARCH string
 | 
						|
	GOOS   string
 | 
						|
	CC     string
 | 
						|
}
 | 
						|
 | 
						|
// Go creates an invocation of the go command.
 | 
						|
func (g *GoToolchain) Go(command string, args ...string) *exec.Cmd {
 | 
						|
	tool := g.goTool(command, args...)
 | 
						|
 | 
						|
	// Configure environment for cross build.
 | 
						|
	if g.GOARCH != "" && g.GOARCH != runtime.GOARCH {
 | 
						|
		tool.Env = append(tool.Env, "CGO_ENABLED=1")
 | 
						|
		tool.Env = append(tool.Env, "GOARCH="+g.GOARCH)
 | 
						|
	}
 | 
						|
	if g.GOOS != "" && g.GOOS != runtime.GOOS {
 | 
						|
		tool.Env = append(tool.Env, "GOOS="+g.GOOS)
 | 
						|
	}
 | 
						|
	// Configure C compiler.
 | 
						|
	if g.CC != "" {
 | 
						|
		tool.Env = append(tool.Env, "CC="+g.CC)
 | 
						|
	} else if os.Getenv("CC") != "" {
 | 
						|
		tool.Env = append(tool.Env, "CC="+os.Getenv("CC"))
 | 
						|
	}
 | 
						|
	// CKZG by default is not portable, append the necessary build flags to make
 | 
						|
	// it not rely on modern CPU instructions and enable linking against
 | 
						|
	tool.Env = append(tool.Env, "CGO_CFLAGS=-D__BLST_PORTABLE__")
 | 
						|
 | 
						|
	return tool
 | 
						|
}
 | 
						|
 | 
						|
func (g *GoToolchain) goTool(command string, args ...string) *exec.Cmd {
 | 
						|
	if g.Root == "" {
 | 
						|
		g.Root = runtime.GOROOT()
 | 
						|
	}
 | 
						|
	tool := exec.Command(filepath.Join(g.Root, "bin", "go"), command) // nolint: gosec
 | 
						|
	tool.Args = append(tool.Args, args...)
 | 
						|
	tool.Env = append(tool.Env, "GOROOT="+g.Root)
 | 
						|
 | 
						|
	// Forward environment variables to the tool, but skip compiler target settings.
 | 
						|
	// TODO: what about GOARM?
 | 
						|
	skip := map[string]struct{}{"GOROOT": {}, "GOARCH": {}, "GOOS": {}, "GOBIN": {}, "CC": {}}
 | 
						|
	for _, e := range os.Environ() {
 | 
						|
		if i := strings.IndexByte(e, '='); i >= 0 {
 | 
						|
			if _, ok := skip[e[:i]]; ok {
 | 
						|
				continue
 | 
						|
			}
 | 
						|
		}
 | 
						|
		tool.Env = append(tool.Env, e)
 | 
						|
	}
 | 
						|
	return tool
 | 
						|
}
 | 
						|
 | 
						|
// DownloadGo downloads the Go binary distribution and unpacks it into a temporary
 | 
						|
// directory. It returns the GOROOT of the unpacked toolchain.
 | 
						|
func DownloadGo(csdb *ChecksumDB, version string) string {
 | 
						|
	// Shortcut: if the Go version that runs this script matches the
 | 
						|
	// requested version exactly, there is no need to download anything.
 | 
						|
	activeGo := strings.TrimPrefix(runtime.Version(), "go")
 | 
						|
	if activeGo == version {
 | 
						|
		log.Printf("-dlgo version matches active Go version %s, skipping download.", activeGo)
 | 
						|
		return runtime.GOROOT()
 | 
						|
	}
 | 
						|
 | 
						|
	ucache, err := os.UserCacheDir()
 | 
						|
	if err != nil {
 | 
						|
		log.Fatal(err)
 | 
						|
	}
 | 
						|
 | 
						|
	// For Arm architecture, GOARCH includes ISA version.
 | 
						|
	os := runtime.GOOS
 | 
						|
	arch := runtime.GOARCH
 | 
						|
	if arch == "arm" {
 | 
						|
		arch = "armv6l"
 | 
						|
	}
 | 
						|
	file := fmt.Sprintf("go%s.%s-%s", version, os, arch)
 | 
						|
	if os == "windows" {
 | 
						|
		file += ".zip"
 | 
						|
	} else {
 | 
						|
		file += ".tar.gz"
 | 
						|
	}
 | 
						|
	url := "https://golang.org/dl/" + file
 | 
						|
	dst := filepath.Join(ucache, file)
 | 
						|
	if err := csdb.DownloadFile(url, dst); err != nil {
 | 
						|
		log.Fatal(err)
 | 
						|
	}
 | 
						|
 | 
						|
	godir := filepath.Join(ucache, fmt.Sprintf("geth-go-%s-%s-%s", version, os, arch))
 | 
						|
	if err := ExtractArchive(dst, godir); err != nil {
 | 
						|
		log.Fatal(err)
 | 
						|
	}
 | 
						|
	goroot, err := filepath.Abs(filepath.Join(godir, "go"))
 | 
						|
	if err != nil {
 | 
						|
		log.Fatal(err)
 | 
						|
	}
 | 
						|
	return goroot
 | 
						|
}
 |