Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GOARM_6 (0.08 sec)

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

    		switch {
    		case strings.Contains(cfg.GOARM, "7"):
    			args = append(args, "-D", "GOARM_7")
    			fallthrough
    		case strings.Contains(cfg.GOARM, "6"):
    			args = append(args, "-D", "GOARM_6")
    			fallthrough
    		default:
    			args = append(args, "-D", "GOARM_5")
    		}
    	}
    
    	if cfg.Goarch == "arm64" {
    		g, err := buildcfg.ParseGoarm64(cfg.GOARM64)
    		if err == nil && g.LSE {
    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

    		switch {
    		case strings.Contains(goarm, "7"):
    			asmArgs = append(asmArgs, "-D", "GOARM_7")
    			fallthrough
    		case strings.Contains(goarm, "6"):
    			asmArgs = append(asmArgs, "-D", "GOARM_6")
    			fallthrough
    		default:
    			asmArgs = append(asmArgs, "-D", "GOARM_5")
    		}
    	}
    	goasmh := pathf("%s/go_asm.h", workdir)
    
    	// Collect symabis from assembly code.
    	var symabis string
    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