Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 215 for gomips (0.13 sec)

  1. src/cmd/go/testdata/script/build_cache_gomips.txt

    ! stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
    
    # Clean cache
    go clean -cache
    
    # Build without setting GOMIPS
    env GOMIPS=
    go build -gcflags=-S f.go
    stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
    
    # Building with GOMIPS should still not use floating point registers.
    env GOMIPS=softfloat
    go build -gcflags=-S f.go
    ! stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
    
    -- f.go --
    package f
    
    func F(x float64) float64 {
         return x + x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 859 bytes
    - Viewed (0)
  2. src/internal/buildcfg/cfg.go

    		return minor <= g_minor+5
    	} else {
    		return false
    	}
    }
    
    func gomips() string {
    	switch v := envOr("GOMIPS", defaultGOMIPS); v {
    	case "hardfloat", "softfloat":
    		return v
    	}
    	Error = fmt.Errorf("invalid GOMIPS: must be hardfloat, softfloat")
    	return defaultGOMIPS
    }
    
    func gomips64() string {
    	switch v := envOr("GOMIPS64", defaultGOMIPS64); v {
    	case "hardfloat", "softfloat":
    		return v
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/telemetrystats/telemetrystats.go

    	case "arm":
    		telemetry.Inc("go/platform/target/goarm:" + cfg.GOARM)
    	case "arm64":
    		telemetry.Inc("go/platform/target/goarm64:" + cfg.GOARM64)
    	case "mips":
    		telemetry.Inc("go/platform/target/gomips:" + cfg.GOMIPS)
    	case "ppc64":
    		telemetry.Inc("go/platform/target/goppc64:" + cfg.GOPPC64)
    	case "riscv64":
    		telemetry.Inc("go/platform/target/goriscv64:" + cfg.GORISCV64)
    	case "wasm":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/tooltags.txt

    stdout 'amd64.v1 amd64.v2 amd64.v3'
    
    env GOARCH=arm
    env GOARM=6
    go list -f '{{context.ToolTags}}'
    stdout 'arm.5 arm.6'
    
    env GOARCH=mips
    env GOMIPS=hardfloat
    go list -f '{{context.ToolTags}}'
    stdout 'mips.hardfloat'
    
    env GOARCH=mips64
    env GOMIPS=hardfloat
    go list -f '{{context.ToolTags}}'
    stdout 'mips64.hardfloat'
    
    env GOARCH=ppc64
    env GOPPC64=power9
    go list -f '{{context.ToolTags}}'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 07:25:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cfg/cfg.go

    	GOAMD64, goAMD64Changed     = EnvOrAndChanged("GOAMD64", fmt.Sprintf("%s%d", "v", buildcfg.GOAMD64))
    	GOMIPS, goMIPSChanged       = EnvOrAndChanged("GOMIPS", buildcfg.GOMIPS)
    	GOMIPS64, goMIPS64Changed   = EnvOrAndChanged("GOMIPS64", buildcfg.GOMIPS64)
    	GOPPC64, goPPC64Changed     = EnvOrAndChanged("GOPPC64", fmt.Sprintf("%s%d", "power", buildcfg.GOPPC64))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/internal/cfg/cfg.go

    	GO111MODULE
    	GO386
    	GOAMD64
    	GOARCH
    	GOARM
    	GOARM64
    	GOBIN
    	GOCACHE
    	GOCACHEPROG
    	GOENV
    	GOEXE
    	GOEXPERIMENT
    	GOFLAGS
    	GOGCCFLAGS
    	GOHOSTARCH
    	GOHOSTOS
    	GOINSECURE
    	GOMIPS
    	GOMIPS64
    	GOMODCACHE
    	GONOPROXY
    	GONOSUMDB
    	GOOS
    	GOPATH
    	GOPPC64
    	GOPRIVATE
    	GOPROXY
    	GORISCV64
    	GOROOT
    	GOSUMDB
    	GOTMPDIR
    	GOTOOLCHAIN
    	GOTOOLDIR
    	GOVCS
    	GOWASM
    	GOWORK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 1.2K bytes
    - Viewed (1)
  7. src/cmd/dist/build.go

    		"-D", "GOOS_GOARCH_" + goos + "_" + goarch,
    		"-p", pkg,
    	}
    	if goarch == "mips" || goarch == "mipsle" {
    		// Define GOMIPS_value from gomips.
    		asmArgs = append(asmArgs, "-D", "GOMIPS_"+gomips)
    	}
    	if goarch == "mips64" || goarch == "mips64le" {
    		// Define GOMIPS64_value from gomips64.
    		asmArgs = append(asmArgs, "-D", "GOMIPS64_"+gomips64)
    	}
    	if goarch == "ppc64" || goarch == "ppc64le" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/cmd/dist/buildruntime.go

    	fmt.Fprintf(&buf, "const defaultGOARM = `%s`\n", goarm)
    	fmt.Fprintf(&buf, "const defaultGOARM64 = `%s`\n", goarm64)
    	fmt.Fprintf(&buf, "const defaultGOMIPS = `%s`\n", gomips)
    	fmt.Fprintf(&buf, "const defaultGOMIPS64 = `%s`\n", gomips64)
    	fmt.Fprintf(&buf, "const defaultGOPPC64 = `%s`\n", goppc64)
    	fmt.Fprintf(&buf, "const defaultGORISCV64 = `%s`\n", goriscv64)
    	fmt.Fprintf(&buf, "const defaultGOEXPERIMENT = `%s`\n", goexperiment)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gc.go

    		args = append(args, "-D", "GOAMD64_"+cfg.GOAMD64)
    	}
    
    	if cfg.Goarch == "mips" || cfg.Goarch == "mipsle" {
    		// Define GOMIPS_value from cfg.GOMIPS.
    		args = append(args, "-D", "GOMIPS_"+cfg.GOMIPS)
    	}
    
    	if cfg.Goarch == "mips64" || cfg.Goarch == "mips64le" {
    		// Define GOMIPS64_value from cfg.GOMIPS64.
    		args = append(args, "-D", "GOMIPS64_"+cfg.GOMIPS64)
    	}
    
    	if cfg.Goarch == "ppc64" || cfg.Goarch == "ppc64le" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    	  correspond to the arm64.v8.{0-9} and arm64.v9.{0-5} feature build tags.
    	- For GOARCH=mips or mipsle,
    	  GOMIPS=hardfloat and softfloat
    	  correspond to the mips.hardfloat and mips.softfloat
    	  (or mipsle.hardfloat and mipsle.softfloat) feature build tags.
    	- For GOARCH=mips64 or mips64le,
    	  GOMIPS64=hardfloat and softfloat
    	  correspond to the mips64.hardfloat and mips64.softfloat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top