Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GCCGO (0.03 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    	GO111MODULE
    		Controls whether the go command runs in module-aware mode or GOPATH mode.
    		May be "off", "on", or "auto".
    		See https://golang.org/ref/mod#mod-commands.
    	GCCGO
    		The gccgo command to run for 'go build -compiler=gccgo'.
    	GOARCH
    		The architecture, or processor, for which to compile code.
    		Examples are amd64, 386, arm, ppc64.
    	GOBIN
    		The directory where 'go install' will install a command.
    	GOCACHE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	}
    	js = append(js, '\n')
    	if err := sh.writeFile(a.Objdir+"vet.cfg", js); err != nil {
    		return err
    	}
    
    	// TODO(rsc): Why do we pass $GCCGO to go vet?
    	env := b.cCompilerEnv()
    	if cfg.BuildToolchainName == "gccgo" {
    		env = append(env, "GCCGO="+BuildToolchain.compiler())
    	}
    
    	p := a.Package
    	tool := VetTool
    	if tool == "" {
    		tool = base.Tool("vet")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    //	GO111MODULE
    //		Controls whether the go command runs in module-aware mode or GOPATH mode.
    //		May be "off", "on", or "auto".
    //		See https://golang.org/ref/mod#mod-commands.
    //	GCCGO
    //		The gccgo command to run for 'go build -compiler=gccgo'.
    //	GOARCH
    //		The architecture, or processor, for which to compile code.
    //		Examples are amd64, 386, arm, ppc64.
    //	GOBIN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top