Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ldShared (0.07 sec)

  1. src/cmd/go/internal/work/gccgo.go

    	return tools.link(b, root, targetPath, importcfg, root.Deps, ldBuildmode, root.Package.ImportPath)
    }
    
    func (tools gccgoToolchain) ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error {
    	return tools.link(b, root, targetPath, importcfg, allactions, "shared", targetPath)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gc.go

    	}
    	return b.Shell(root).run(dir, root.Package.ImportPath, env, cfg.BuildToolexec, base.Tool("link"), "-o", targetPath, "-importcfg", importcfg, ldflags, mainpkg)
    }
    
    func (gcToolchain) ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error {
    	ldflags := []string{"-installsuffix", cfg.BuildContext.InstallSuffix}
    	ldflags = append(ldflags, "-buildmode=shared")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top