Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for buildFlags (0.24 sec)

  1. src/cmd/go/go_test.go

    	}{
    		{"GOARCH", runtime.GOARCH},
    		{"GOOS", runtime.GOOS},
    		{"GOROOT", testGOROOT},
    		{"GOPATH", os.Getenv("GOPATH")},
    		{"CgoEnabled", ""},
    		{"UseAllFiles", ""},
    		{"Compiler", ""},
    		{"BuildTags", ""},
    		{"ReleaseTags", ""},
    		{"InstallSuffix", ""},
    	} {
    		tt := tt
    		t.Run(tt.v, func(t *testing.T) {
    			tg := testgo(t)
    			tg.parallel()
    			defer tg.cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	}
    	if cfg.BuildMSan {
    		appendSetting("-msan", "true")
    	}
    	// N.B. -pgo added later by setPGOProfilePath.
    	if cfg.BuildRace {
    		appendSetting("-race", "true")
    	}
    	if tags := cfg.BuildContext.BuildTags; len(tags) > 0 {
    		appendSetting("-tags", strings.Join(tags, ","))
    	}
    	if cfg.BuildTrimpath {
    		appendSetting("-trimpath", "true")
    	}
    	if p.DefaultGODEBUG != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top