Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for appendCompilerFlags (0.14 sec)

  1. src/cmd/dist/build.go

    		}
    	}
    	return ""
    }
    
    func goInstall(env []string, goBinary string, args ...string) {
    	goCmd(env, goBinary, "install", args...)
    }
    
    func appendCompilerFlags(args []string) []string {
    	if gogcflags != "" {
    		args = append(args, "-gcflags=all="+gogcflags)
    	}
    	if goldflags != "" {
    		args = append(args, "-ldflags=all="+goldflags)
    	}
    	return args
    }
    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