Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for prebuilt (0.19 sec)

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

    	if a1.built == a.Target {
    		a.built = a.Target
    		if !a.buggyInstall {
    			b.cleanup(a1)
    		}
    		// Whether we're smart enough to avoid a complete rebuild
    		// depends on exactly what the staleness and rebuild algorithms
    		// are, as well as potentially the state of the Go build cache.
    		// We don't really want users to be able to infer (or worse start depending on)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // outside of the usual work spaces, but such programs cannot be
    // installed with "go install" (there is no work space in which to install them),
    // so they are rebuilt from scratch each time they are built.
    // To avoid ambiguity, Go programs cannot use relative import paths
    // within a work space.
    //
    // # Remote import paths
    //
    // Certain import paths also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    		// No permanent install target.
    		p.Target = ""
    	} else if p.Standard && cfg.BuildContext.Compiler == "gccgo" {
    		// gccgo has a preinstalled standard library that cmd/go cannot rebuild.
    		p.Target = ""
    	} else {
    		p.Target = p.Internal.Build.PkgObj
    		if cfg.BuildBuildmode == "shared" && p.Internal.Build.PkgTargetRoot != "" {
    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