Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GOARM64 (0.16 sec)

  1. doc/next/7-ports.md

    ### ARM64 {#arm64}
    
    <!-- go.dev/issue/60905, CL 559555 -->
    Go 1.23 introduces a new `GOARM64` environment variable, which specifies the minimum target version of the ARM64 architecture at compile time. Allowed values are `v8.{0-9}` and `v9.{0-5}`. This may be followed by an option specifying extensions implemented by target hardware. Valid options are `,lse` and `,crypto`.
    
    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/telemetrystats/telemetrystats.go

    	case "amd64":
    		telemetry.Inc("go/platform/target/goamd64:" + cfg.GOAMD64)
    	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":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top