Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GORISCV64_ (0.21 sec)

  1. src/cmd/go/internal/work/gc.go

    		default: // This should always be power8.
    			args = append(args, "-D", "GOPPC64_power8")
    		}
    	}
    
    	if cfg.Goarch == "riscv64" {
    		// Define GORISCV64_value from cfg.GORISCV64.
    		args = append(args, "-D", "GORISCV64_"+cfg.GORISCV64)
    	}
    
    	if cfg.Goarch == "arm" {
    		// Define GOARM_value from cfg.GOARM, which can be either a version
    		// like "6", or a version and a FP mode, like "7,hardfloat".
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    		default: // This should always be power8.
    			asmArgs = append(asmArgs, "-D", "GOPPC64_power8")
    		}
    	}
    	if goarch == "riscv64" {
    		// Define GORISCV64_value from goriscv64
    		asmArgs = append(asmArgs, "-D", "GORISCV64_"+goriscv64)
    	}
    	if goarch == "arm" {
    		// Define GOARM_value from goarm, which can be either a version
    		// like "6", or a version and a FP mode, like "7,hardfloat".
    		switch {
    		case strings.Contains(goarm, "7"):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top