Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Gccgoflags (0.33 sec)

  1. src/cmd/go/internal/load/pkg.go

    			buildmode = "archive"
    		}
    	}
    	appendSetting("-buildmode", buildmode)
    	appendSetting("-compiler", cfg.BuildContext.Compiler)
    	if gccgoflags := BuildGccgoflags.String(); gccgoflags != "" && cfg.BuildContext.Compiler == "gccgo" {
    		appendSetting("-gccgoflags", gccgoflags)
    	}
    	if gcflags := BuildGcflags.String(); gcflags != "" && cfg.BuildContext.Compiler == "gc" {
    		appendSetting("-gcflags", gcflags)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    			cgoCFLAGS = append(cgoCFLAGS, "-fsplit-stack")
    		}
    		cgoflags = append(cgoflags, "-gccgo")
    		if pkgpath := gccgoPkgpath(p); pkgpath != "" {
    			cgoflags = append(cgoflags, "-gccgopkgpath="+pkgpath)
    		}
    		if !BuildToolchain.(gccgoToolchain).supportsCgoIncomplete(b, a) {
    			cgoflags = append(cgoflags, "-gccgo_define_cgoincomplete")
    		}
    	}
    
    	switch cfg.BuildBuildmode {
    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

    //		cannot be included due to a missing tool or ambiguous directory structure.
    //	-compiler name
    //		name of compiler to use, as in runtime.Compiler (gccgo or gc).
    //	-gccgoflags '[pattern=]arg list'
    //		arguments to pass on each gccgo compiler/linker invocation.
    //	-gcflags '[pattern=]arg list'
    //		arguments to pass on each go tool compile invocation.
    //	-installsuffix suffix
    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