Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GOPPC64_power8 (0.3 sec)

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

    		// Define GOMIPS64_value from cfg.GOMIPS64.
    		args = append(args, "-D", "GOMIPS64_"+cfg.GOMIPS64)
    	}
    
    	if cfg.Goarch == "ppc64" || cfg.Goarch == "ppc64le" {
    		// Define GOPPC64_power8..N from cfg.PPC64.
    		// We treat each powerpc version as a superset of functionality.
    		switch cfg.GOPPC64 {
    		case "power10":
    			args = append(args, "-D", "GOPPC64_power10")
    			fallthrough
    		case "power9":
    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

    			fallthrough
    		case "power9":
    			asmArgs = append(asmArgs, "-D", "GOPPC64_power9")
    			fallthrough
    		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" {
    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