Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for formtarget (0.08 sec)

  1. src/cmd/dist/build.go

    func compilerEnv(envName, def string) map[string]string {
    	m := map[string]string{"": def}
    
    	if env := os.Getenv(envName); env != "" {
    		m[""] = env
    	}
    	if env := os.Getenv(envName + "_FOR_TARGET"); env != "" {
    		if gohostos != goos || gohostarch != goarch {
    			m[gohostos+"/"+gohostarch] = m[""]
    		}
    		m[""] = env
    	}
    
    	for _, goos := range okgoos {
    		for _, goarch := range okgoarch {
    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