Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Gccgoflags (0.23 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/work/build.go

    	case "gccgo":
    		if load.BuildGcflags.Present() {
    			fmt.Println("go build: when using gccgo toolchain, please pass compiler flags using -gccgoflags, not -gcflags")
    		}
    		if load.BuildLdflags.Present() {
    			fmt.Println("go build: when using gccgo toolchain, please pass linker flags using -gccgoflags, not -ldflags")
    		}
    	case "gc":
    		if load.BuildGccgoflags.Present() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/gccgo.go

    					toPath = "." + toPath[len(base.Cwd()):]
    				}
    				args = append(args, "-ffile-prefix-map="+overlayPath+"="+toPath)
    			}
    		}
    	}
    
    	args = append(args, a.Package.Internal.Gccgoflags...)
    	for _, f := range gofiles {
    		f := mkAbs(p.Dir, f)
    		// Overlay files if necessary.
    		// See comment on gctoolchain.gc about overlay TODOs
    		f, _ = fsys.OverlayPath(f)
    		args = append(args, f)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/action.go

    		// we let them use the flags specified for the command-line arguments.
    		p := &load.Package{}
    		p.Internal.CmdlinePkg = true
    		p.Internal.Ldflags = load.BuildLdflags.For(p)
    		p.Internal.Gccgoflags = load.BuildGccgoflags.For(p)
    
    		// Add implicit dependencies to pkgs list.
    		// Currently buildmode=shared forces external linking mode, and
    		// external linking mode forces an import of runtime/cgo (and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top