Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GOARM64 (0.14 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/help/helpdoc.go

    	GOARM64
    		For GOARCH=arm64, the ARM64 architecture for which to compile.
    		Valid values are v8.0 (default), v8.{1-9}, v9.{0-5}.
    		The value can be followed by an option specifying extensions implemented by target hardware.
    		Valid options are ,lse and ,crypto.
    		Note that some extensions are enabled by default starting from a certain GOARM64 version;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	GOARM64
    //		For GOARCH=arm64, the ARM64 architecture for which to compile.
    //		Valid values are v8.0 (default), v8.{1-9}, v9.{0-5}.
    //		The value can be followed by an option specifying extensions implemented by target hardware.
    //		Valid options are ,lse and ,crypto.
    //		Note that some extensions are enabled by default starting from a certain GOARM64 version;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	makeAtomicGuardedIntrinsicARM64 := func(op0, op1 ssa.Op, typ types.Kind, emit atomicOpEmitter) intrinsicBuilder {
    
    		return func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			if buildcfg.GOARM64.LSE {
    				emit(s, n, args, op1, typ)
    			} else {
    				// Target Atomic feature is identified by dynamic detection
    				addr := s.entryNewValue1A(ssa.OpAddr, types.Types[types.TBOOL].PtrTo(), ir.Syms.ARM64HasATOMICS, s.sb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top