Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CCACHE_DISABLE (0.1 sec)

  1. src/cmd/go/script_test.go

    	if err != nil {
    		return nil, err
    	}
    	env := []string{
    		pathEnvName() + "=" + testBin + string(filepath.ListSeparator) + os.Getenv(pathEnvName()),
    		homeEnvName() + "=/no-home",
    		"CCACHE_DISABLE=1", // ccache breaks with non-existent HOME
    		"GOARCH=" + runtime.GOARCH,
    		"TESTGO_GOHOSTARCH=" + goHostArch,
    		"GOCACHE=" + testGOCACHE,
    		"GOCOVERDIR=" + os.Getenv("GOCOVERDIR"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	// On some systems the default C compiler is ccache.
    	// Setting HOME to a non-existent directory will break
    	// those systems. Disable ccache and use real compiler. Issue 17668.
    	os.Setenv("CCACHE_DISABLE", "1")
    	if cfg.Getenv("GOCACHE") == "" {
    		os.Setenv("GOCACHE", testGOCACHE) // because $HOME is gone
    	}
    
    	if testenv.Builder() != "" || os.Getenv("GIT_TRACE_CURL") == "1" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top