Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Gccgoflags (0.17 sec)

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

    				},
    				Imports:    ximports,
    				RawImports: rawXTestImports,
    
    				Asmflags:       p.Internal.Asmflags,
    				Gcflags:        p.Internal.Gcflags,
    				Ldflags:        p.Internal.Ldflags,
    				Gccgoflags:     p.Internal.Gccgoflags,
    				Embed:          xtestEmbed,
    				OrigImportPath: p.Internal.OrigImportPath,
    				PGOProfile:     p.Internal.PGOProfile,
    			},
    		}
    		if pxtestNeedsPtest {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/go/go_test.go

    	tg.runFail("build", "x")
    	tg.grepStderr("invalid input file name \"-y.go\"", "did not reject -y.go")
    	tg.must(os.Remove(tg.path("src/x/-y.go")))
    
    	if runtime.Compiler == "gccgo" {
    		tg.runFail("build", "-gccgoflags=all=@x", "x")
    	} else {
    		tg.runFail("build", "-gcflags=all=@x", "x")
    	}
    	tg.grepStderr("invalid command-line argument @x in command", "did not reject @x during exec")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. 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