Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for defaultGORISCV64 (0.14 sec)

  1. src/cmd/dist/buildruntime.go

    	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)
    	fmt.Fprintf(&buf, "const defaultGO_EXTLINK_ENABLED = `%s`\n", goextlinkenabled)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. 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'
    	})
    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