Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GO19CONCURRENTCOMPILATION (0.3 sec)

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

    	canDashC := concurrentGCBackendCompilationEnabledByDefault
    
    	switch e := os.Getenv("GO19CONCURRENTCOMPILATION"); e {
    	case "0":
    		canDashC = false
    	case "1":
    		canDashC = true
    	case "":
    		// Not set. Use default.
    	default:
    		log.Fatalf("GO19CONCURRENTCOMPILATION must be 0, 1, or unset, got %q", e)
    	}
    
    	// TODO: Test and delete these conditions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top