Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GCCGO (0.06 sec)

  1. 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)
  2. src/cmd/go/internal/load/pkg.go

    	if str.HasPathPrefix(p.ImportPath, "testing/internal") && importerPath == "testmain" {
    		return nil
    	}
    
    	// We can't check standard packages with gccgo.
    	if cfg.BuildContext.Compiler == "gccgo" && p.Standard {
    		return nil
    	}
    
    	// The sort package depends on internal/reflectlite, but during bootstrap
    	// the path rewriting causes the normal internal checks to fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K 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)
  4. src/reflect/all_test.go

    		StructOf([]StructField{
    			{Type: TypeOf("")},
    			{Type: TypeOf("")},
    		})
    	})
    	// check that type already in binary is found
    	checkSameType(t, StructOf(fields[2:3]), struct{ Y uint64 }{})
    
    	// gccgo used to fail this test.
    	type structFieldType any
    	checkSameType(t,
    		StructOf([]StructField{
    			{
    				Name: "F",
    				Type: TypeOf((*structFieldType)(nil)).Elem(),
    			},
    		}),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top