Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rva22u64 (0.35 sec)

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

    env GOARCH=riscv64
    env GORISCV64=rva20u64
    go list -f '{{context.ToolTags}}'
    stdout 'riscv64.rva20u64'
    
    env GOARCH=riscv64
    env GORISCV64=rva22u64
    go list -f '{{context.ToolTags}}'
    stdout 'riscv64.rva20u64 riscv64.rva22u64'
    
    env GOARCH=riscv64
    env GORISCV64=rva22
    ! go list -f '{{context.ToolTags}}'
    stderr 'go: invalid GORISCV64: must be rva20u64, rva22u64'
    
    env GOARCH=riscv64
    env GORISCV64=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 07:25:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/internal/buildcfg/cfg_test.go

    	if goamd64(); Error == nil {
    		t.Errorf("Wrong parsing of GOAMD64=1")
    	}
    
    	os.Setenv("GORISCV64", "rva20u64")
    	if goriscv64() != 20 {
    		t.Errorf("Wrong parsing of RISCV64=rva20u64")
    	}
    	os.Setenv("GORISCV64", "rva22u64")
    	if goriscv64() != 22 {
    		t.Errorf("Wrong parsing of RISCV64=rva22u64")
    	}
    	Error = nil
    	os.Setenv("GORISCV64", "rva22")
    	if _ = goriscv64(); Error == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. doc/next/7-ports.md

    The `GORISCV64` environment variable defaults to `rva20u64`.
    
    ### Wasm {#wasm}
    
    <!-- go.dev/issue/63718 -->
    The `go_wasip1_wasm_exec` script in `GOROOT/misc/wasm` has dropped support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/internal/buildcfg/cfg.go

    	return int(defaultGOPPC64[len("power")] - '0')
    }
    
    func goriscv64() int {
    	switch v := envOr("GORISCV64", defaultGORISCV64); v {
    	case "rva20u64":
    		return 20
    	case "rva22u64":
    		return 22
    	}
    	Error = fmt.Errorf("invalid GORISCV64: must be rva20u64, rva22u64")
    	v := defaultGORISCV64[len("rva"):]
    	i := strings.IndexFunc(v, func(r rune) bool {
    		return r < '0' || r > '9'
    	})
    	year, _ := strconv.Atoi(v[:i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top